We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f00bd74 commit a331d3bCopy full SHA for a331d3b
apis/python/src/tiledb/vector_search/ingestion.py
@@ -1775,7 +1775,7 @@ def consolidate_and_vacuum(
1775
# TODO remove temp data for tiledb URIs
1776
if not index_group_uri.startswith("tiledb://"):
1777
group = tiledb.Group(index_group_uri, "r")
1778
- if group.__contains__(PARTIAL_WRITE_ARRAY_DIR):
+ if PARTIAL_WRITE_ARRAY_DIR in group:
1779
group.close()
1780
group = tiledb.Group(index_group_uri, "w")
1781
group.remove(PARTIAL_WRITE_ARRAY_DIR)
0 commit comments