fix: error msg when query vector dim is wrong (#1339)

- changed the error msg for table.search with wrong query vector dim 
- added missing fields for listIndices and indexStats to be consistent
with Python API - will make changes in node integ test
This commit is contained in:
QianZhu
2024-05-31 10:18:06 -07:00
committed by GitHub
parent af65417d19
commit 1dbb4cd1e2
5 changed files with 31 additions and 9 deletions

View File

@@ -704,6 +704,9 @@ export interface VectorIndex {
export interface IndexStats {
numIndexedRows: number | null
numUnindexedRows: number | null
index_type: string | null
distance_type: string | null
completed_at: string | null
}
/**