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
@@ -241,7 +241,6 @@ interface BUN_MARIADB_TableSchemaType {
parentTableName?: string; // inherit / merge fields from another table
tableNameOld?: string; // rename: old name triggers ALTER TABLE RENAME
collation?: "utf8mb4_bin" | "utf8mb4_unicode_520_ci";
isVector?: boolean; // mark as vector-oriented table
}
```
@@ -743,7 +742,6 @@ MariaDB native `VECTOR(n)` columns and `VECTOR INDEX` are supported (MariaDB 11.
```ts
{
tableName: "documents",
isVector: true,
fields: [
{
fieldName: "embedding",