File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ RetrySettings
60
60
:inherited-members:
61
61
:undoc-members:
62
62
63
+
63
64
Result Sets
64
65
^^^^^^^^^^^
65
66
Original file line number Diff line number Diff line change @@ -14,11 +14,7 @@ The most recent published version of this documentation should be at https://ydb
14
14
Community
15
15
---------
16
16
17
- You can ask your questions in official Telegram chats:
18
-
19
- * **EN ** `YDB chat <https://t.me/ydb_en >`_.
20
- * **RU ** `YDB chat <https://t.me/ydb_ru >`_.
21
-
17
+ You can ask your questions in official Telegram chats: `EN <https://t.me/ydb_en >`_ | `RU <https://t.me/ydb_ru >`_.
22
18
23
19
Bugs and feature enhancements to YDB Python SDK should be reported on the `GitHub
24
20
issue tracker
Original file line number Diff line number Diff line change 12
12
13
13
class BaseQueryTxMode (IToProto ):
14
14
"""Abstract class for Query Transaction Modes."""
15
+
15
16
@property
16
17
@abc .abstractmethod
17
18
def name (self ) -> str :
@@ -23,6 +24,7 @@ class QuerySnapshotReadOnly(BaseQueryTxMode):
23
24
All the data reads are consistent. The snapshot is taken when the transaction begins,
24
25
meaning the transaction sees all changes committed before it began.
25
26
"""
27
+
26
28
def __init__ (self ):
27
29
self ._name = "snapshot_read_only"
28
30
@@ -38,6 +40,7 @@ class QuerySerializableReadWrite(BaseQueryTxMode):
38
40
"""This mode guarantees that the result of successful parallel transactions is equivalent
39
41
to their serial execution, and there are no read anomalies for successful transactions.
40
42
"""
43
+
41
44
def __init__ (self ):
42
45
self ._name = "serializable_read_write"
43
46
You can’t perform that action at this time.
0 commit comments