0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-07-13 17:55:15 +00:00
Files
libsql/libsql-sqlite3/test/fixtures/tkt-5e10420e8d.test
2024-05-27 12:59:10 +02:00

27 lines
434 B
Plaintext

PRAGMA page_size = 1024;
PRAGMA auto_vacuum = incremental;
CREATE TABLE t1(x);
CREATE TABLE t2(x);
CREATE TABLE t3(x);
INSERT INTO t3 VALUES(randomblob(500 + 1024*248));
INSERT INTO t1 VALUES(randomblob(1500));
INSERT INTO t2 VALUES(randomblob(500 + 1024*248));
DELETE FROM t3;
DELETE FROM t2;
DELETE FROM t1;
PRAGMA incremental_vacuum(248)
PRAGMA incremental_vacuum(1)
PRAGMA integrity_check;