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

RDBC-768 Python client - Commands #200

Merged
merged 26 commits into from
Dec 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a128cca
RDBC-768 SimpleMultiMapTest::canCreateMultiMapIndex
poissoncorp Dec 20, 2023
d5ade0c
RDBC-768 AdvancedPatchingTest::testWithVariables
poissoncorp Dec 20, 2023
6688f33
RDBC-768 AdvancedPatchingTest::canApplyBasicScriptAsPatch
poissoncorp Dec 20, 2023
918d698
RDBC-768 AdvancedPatchingTest::canDeserializeModifiedDocument
poissoncorp Dec 21, 2023
2296afc
RDBC-768 ClientConfigurationTest::canSaveAndReadClientConfiguration
poissoncorp Dec 21, 2023
4c49a47
RDBC-768 ExpirationConfigurationTest::canSetupExpiration
poissoncorp Dec 21, 2023
252e6ed
RDBC-768 IndexesFromClientTest::canExecuteManyIndexes
poissoncorp Dec 21, 2023
388aa29
RDBC-768 IndexesFromClientTest::canDelete
poissoncorp Dec 21, 2023
7bf2651
RDBC-768 IndexesFromClientTest::canReset
poissoncorp Dec 21, 2023
425b626
RDBC-768 PutDocumentCommandTest::canPutDocumentUsingCommandWithSurrog…
poissoncorp Dec 21, 2023
c2c8d5e
RDBC-768 PutDocumentCommandTest::canPutDocumentUsingCommand
poissoncorp Dec 21, 2023
03677d9
RDBC-768 GetTcpInfoTest::canGetTcpInfo
poissoncorp Dec 21, 2023
5252e16
RDBC-768 PatchTest::canPatchSingleDocument
poissoncorp Dec 21, 2023
42a38bf
RDBC-768 ReorderDatabaseMembersTest::canSendReorderCommand
poissoncorp Dec 22, 2023
583c37f
RDBC-768 GetNextOperationIdCommandTest::canGetNextOperationId
poissoncorp Dec 22, 2023
fc0471b
RDBC-768 GetStatisticsCommandTest::canGetStats
poissoncorp Dec 28, 2023
60af654
RDBC-768 PromoteDatabaseTest::canSendPromoteDatabaseCommand
poissoncorp Dec 28, 2023
d76f91f
RDBC-768 StoreTest::refreshTest
poissoncorp Dec 28, 2023
e94eec4
RDBC-768 DeleteDocumentCommandTest::canDeleteDocument
poissoncorp Dec 28, 2023
a6d5321
RDBC-768 NextAndSeedIdentitiesTest::nextIdentityForOperationShouldCre…
poissoncorp Dec 28, 2023
3900bff
RDBC-768 NextAndSeedIdentitiesTest::seedIdentityFor
poissoncorp Dec 29, 2023
cb85739
RDBC-768 RavenDB_13034Test::exploringConcurrencyBehavior
poissoncorp Dec 29, 2023
a657460
RDBC-768 RavenDB_13452Test::canModifyDictionaryWithPatch_Remove
poissoncorp Dec 29, 2023
11248ad
RDBC-768 canModifyDictionaryWithPatch_Add
poissoncorp Dec 29, 2023
3234003
RDBC-768 skip failing test on ci/cd and annotate with todo
poissoncorp Dec 29, 2023
5471491
RDBC-768 skip failing test on ci/cd due to license
poissoncorp Dec 29, 2023
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
5 changes: 4 additions & 1 deletion ravendb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
AutoIndexDefinition,
AutoIndexFieldOptions,
)
from ravendb.documents.indexes.index_creation import AbstractIndexDefinitionBuilder, AbstractIndexCreationTask
from ravendb.documents.indexes.abstract_index_creation_tasks import (
AbstractIndexDefinitionBuilder,
AbstractIndexCreationTask,
)
from ravendb.documents.indexes.spatial.configuration import AutoSpatialOptions
from ravendb.documents.operations.attachments import (
DeleteAttachmentOperation,
Expand Down
2 changes: 1 addition & 1 deletion ravendb/documents/commands/subscriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(
@classmethod
def from_json(cls, json_dict: Dict) -> TcpConnectionInfo:
return TcpConnectionInfo(
json_dict.get("Port", None),
json_dict.get("Port", None) or 0,
json_dict.get("Url", None),
json_dict.get("Certificate", None),
json_dict.get("Urls", None),
Expand Down
Loading
Loading