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 1482ffc commit d042d17Copy full SHA for d042d17
apis/python/src/tiledb/vector_search/flat_index.py
@@ -36,6 +36,9 @@ def __init__(
36
ctx=self.ctx,
37
config=config,
38
)
39
+
40
+ # Check for existence of ids array. Previous versions were not using external_ids in the ingestion assuming
41
+ # that the external_ids were the position of the vector in the array.
42
if storage_formats[self.storage_version]["IDS_ARRAY_NAME"] + self.index_version in self.group:
43
self.ids_uri = self.group[
44
storage_formats[self.storage_version]["IDS_ARRAY_NAME"] + self.index_version
0 commit comments