I have a test.db
an sqlite3
database. auto_vacuum=incremental
however, when I call PRAGMA incremental_vacuum(1000)
after deleting a huge amount of the database, the incremental_vacuum
only remove the size of one page -4096B or 4K
and I can't figure out why it does that.
Is there a limit cap on how many pages to be removed?
Is there a compile_option
that I don't know off that has to be changed?
All ideas are welcome.