diff --git a/ydb/table.py b/ydb/table.py index ac9f9304..cfcffb17 100644 --- a/ydb/table.py +++ b/ydb/table.py @@ -297,6 +297,10 @@ def with_global_index(self): self._pb.global_index.SetInParent() return self + def with_global_async_index(self): + self._pb.global_async_index.SetInParent() + return self + def with_index_columns(self, *columns): for column in columns: self._pb.index_columns.append(column)