Skip to content

Commit 6289a11

Browse files
committed
Add an ability to create async indexes
1 parent 3a6e5f7 commit 6289a11

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ydb/table.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,10 @@ def with_global_index(self):
297297
self._pb.global_index.SetInParent()
298298
return self
299299

300+
def with_global_async_index(self):
301+
self._pb.global_async_index.SetInParent()
302+
return self
303+
300304
def with_index_columns(self, *columns):
301305
for column in columns:
302306
self._pb.index_columns.append(column)

0 commit comments

Comments
 (0)