Skip to content

Commit d3bd358

Browse files
authored
Merge pull request #484 from ydb-platform/add_global_async_index
Add an ability to create async indexes
2 parents 3a6e5f7 + 6289a11 commit d3bd358

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)