chore: upgrade lance to v0.8.17 (#656)

Readying for the next Lance release.
This commit is contained in:
Will Jones
2023-11-18 15:57:23 -08:00
committed by GitHub
parent d8e3e54226
commit a57aa4b142
8 changed files with 21 additions and 12 deletions

View File

@@ -282,7 +282,8 @@ describe('LanceDB client', function () {
)
const table = await con.createTable({ name: 'vectors', schema })
await table.add([{ vector: Array(128).fill(0.1) }])
await table.delete('vector IS NOT NULL')
// https://github.com/lancedb/lance/issues/1635
await table.delete('true')
const result = await table.search(Array(128).fill(0.1)).execute()
assert.isEmpty(result)
})