0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-07-13 09:45:15 +00:00
Files
libsql/libsql-sqlite3/test/fixtures/mmapwarm.test
2024-05-27 12:59:10 +02:00

10 lines
213 B
Plaintext

PRAGMA auto_vacuum = 0;
CREATE TABLE t1(x, y);
WITH s(i) AS (
SELECT 1 UNION ALL SELECT i+1 FROM s WHERE i<500
)
INSERT INTO t1 SELECT randomblob(400), randomblob(500) FROM s;
PRAGMA page_count;