feat: support for deletion (#219)

Also upgrades Arrow and Lance.
This commit is contained in:
Will Jones
2023-06-23 18:09:07 -07:00
committed by GitHub
parent 1a9a392e20
commit ad48242ffb
11 changed files with 200 additions and 134 deletions

View File

@@ -43,7 +43,7 @@ class LanceDBConnection:
LanceTable(my_table)
>>> db.create_table("another_table", data=[{"vector": [0.4, 0.4], "b": 6}])
LanceTable(another_table)
>>> db.table_names()
>>> sorted(db.table_names())
['another_table', 'my_table']
>>> len(db)
2