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
6060 :inherited-members:
6161 :undoc-members:
6262
63+
6364Result Sets
6465^^^^^^^^^^^
6566
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
1414Community
1515---------
1616
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 >`_.
2218
2319Bugs and feature enhancements to YDB Python SDK should be reported on the `GitHub
2420issue tracker
Original file line number Diff line number Diff line change 1212
1313class BaseQueryTxMode (IToProto ):
1414 """Abstract class for Query Transaction Modes."""
15+
1516 @property
1617 @abc .abstractmethod
1718 def name (self ) -> str :
@@ -23,6 +24,7 @@ class QuerySnapshotReadOnly(BaseQueryTxMode):
2324 All the data reads are consistent. The snapshot is taken when the transaction begins,
2425 meaning the transaction sees all changes committed before it began.
2526 """
27+
2628 def __init__ (self ):
2729 self ._name = "snapshot_read_only"
2830
@@ -38,6 +40,7 @@ class QuerySerializableReadWrite(BaseQueryTxMode):
3840 """This mode guarantees that the result of successful parallel transactions is equivalent
3941 to their serial execution, and there are no read anomalies for successful transactions.
4042 """
43+
4144 def __init__ (self ):
4245 self ._name = "serializable_read_write"
4346
You can’t perform that action at this time.
0 commit comments