mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-26 01:06:27 +02:00
drop aux shadow table on destroy
This commit is contained in:
parent
163654b93a
commit
d6adbc9f56
4 changed files with 37 additions and 6 deletions
|
|
@ -29,6 +29,11 @@ def test_normal(db, snapshot):
|
|||
assert exec(db, "select * from v") == snapshot()
|
||||
assert vec0_shadow_table_contents(db, "v") == snapshot()
|
||||
|
||||
db.execute("drop table v;")
|
||||
assert exec(db, "select * from sqlite_master order by name") == snapshot(
|
||||
name="sqlite_master post drop"
|
||||
)
|
||||
|
||||
|
||||
def test_types(db, snapshot):
|
||||
pass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue