Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: This and that #194

Merged
merged 3 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/adapter/pymongo.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ with PyMongoCrateDBAdapter(dburi="crate://crate@localhost:4200"):

Install the emulation package.
```shell
pip install --upgrade 'cratedb-toolkit[pymongo] @ git+https://github.com/crate-workbench/cratedb-toolkit.git@pymongo-adapter'
pip install --upgrade 'cratedb-toolkit[pymongo]'
```

Start CrateDB.
Expand Down
2 changes: 1 addition & 1 deletion doc/adapter/rockset.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Currently, the API key has no significance.

Install the emulation package.
```shell
pip install --upgrade 'cratedb-toolkit[service] @ git+https://github.com/crate-workbench/cratedb-toolkit.git@collab/rockset'
pip install --upgrade 'cratedb-toolkit[service]'
```

Start CrateDB.
Expand Down
2 changes: 1 addition & 1 deletion doc/cfr/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(cfr)=
# CrateDB Cluster Flight Recorder (CFR)

CFR helps collecting information about CrateDB clusters for support requests
CFR helps to collect information about CrateDB clusters for support requests
and self-service debugging.

## Install
Expand Down
3 changes: 2 additions & 1 deletion tests/adapter/test_pymongo.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,8 @@ def test_pymongo_tutorial(
# Getting a Single Document With find_one().
# https://pymongo.readthedocs.io/en/stable/tutorial.html#getting-a-single-document-with-find-one
document_loaded = posts.find_one({"author": "Mike"})
assert "mongodb" in document_loaded["tags"]
# Remark: Order of items is not guaranteed, so one of both records is returned.
assert "mongodb" in document_loaded["tags"] or "bulk" in document_loaded["tags"]

# Querying By ObjectId.
# https://pymongo.readthedocs.io/en/stable/tutorial.html#querying-by-objectid
Expand Down