drop aux shadow table on destroy

This commit is contained in:
Alex Garcia 2024-11-13 15:01:43 -08:00
parent 163654b93a
commit d6adbc9f56
4 changed files with 37 additions and 6 deletions

View file

@ -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