Remove table.isVector feature altogether. All vector features are handled per column

This commit is contained in:
2026-08-05 11:01:58 +01:00
parent 000d40b4cb
commit 4f203ce4e7
18 changed files with 17 additions and 136 deletions
-2
View File
@@ -6,8 +6,6 @@ import { grabDesiredUniqueConstraints } from "./sync-unique-constraints";
function isVectorIndexDef(index, table) {
if (index.indexType === "VECTOR")
return true;
if (table.isVector)
return true;
const firstFieldName = index.indexTableFields?.[0];
if (!firstFieldName)
return false;