File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change @@ -128,6 +128,39 @@ QueryTxContext (AsyncIO)
128
128
:undoc-members:
129
129
130
130
131
+ Query Tx Mode
132
+ ^^^^^^^^^^^^^
133
+
134
+ .. autoclass :: ydb.BaseQueryTxMode
135
+ :members:
136
+ :inherited-members:
137
+ :undoc-members:
138
+
139
+
140
+ .. autoclass :: ydb.QueryOnlineReadOnly
141
+ :members:
142
+ :inherited-members:
143
+ :undoc-members:
144
+
145
+
146
+ .. autoclass :: ydb.QuerySerializableReadWrite
147
+ :members:
148
+ :inherited-members:
149
+ :undoc-members:
150
+
151
+
152
+ .. autoclass :: ydb.QuerySnapshotReadOnly
153
+ :members:
154
+ :inherited-members:
155
+ :undoc-members:
156
+
157
+
158
+ .. autoclass :: ydb.QueryStaleReadOnly
159
+ :members:
160
+ :inherited-members:
161
+ :undoc-members:
162
+
163
+
131
164
------------------------
132
165
133
166
Table Service
Original file line number Diff line number Diff line change 1
1
__all__ = [
2
+ "BaseQueryTxMode" ,
2
3
"QueryOnlineReadOnly" ,
3
4
"QuerySerializableReadWrite" ,
4
5
"QuerySnapshotReadOnly" ,
5
6
"QueryStaleReadOnly" ,
6
7
"QuerySessionPool" ,
7
- "QueryClientSync " ,
8
+ "QueryClientSettings " ,
8
9
"QuerySession" ,
9
10
"QueryTxContext" ,
10
11
]
20
21
21
22
from .._grpc .grpcwrapper import common_utils
22
23
from .._grpc .grpcwrapper .ydb_query_public_types import (
24
+ BaseQueryTxMode ,
23
25
QueryOnlineReadOnly ,
24
26
QuerySerializableReadWrite ,
25
27
QuerySnapshotReadOnly ,
You can’t perform that action at this time.
0 commit comments