0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-07-12 05:49:25 +00:00
Files
libsql/libsql-sqlite3/test/fixtures/mallocA.test
2024-05-27 12:59:10 +02:00

19 lines
482 B
Plaintext

CREATE TABLE t1(a, b);
CREATE INDEX i1 ON t1(a, b);
INSERT INTO t1 VALUES('abc', 'w'); -- rowid=1
INSERT INTO t1 VALUES('abc', 'x'); -- rowid=2
INSERT INTO t1 VALUES('abc', 'y'); -- rowid=3
INSERT INTO t1 VALUES('abc', 'z'); -- rowid=4
INSERT INTO t1 VALUES('def', 'w'); -- rowid=5
INSERT INTO t1 VALUES('def', 'x'); -- rowid=6
INSERT INTO t1 VALUES('def', 'y'); -- rowid=7
INSERT INTO t1 VALUES('def', 'z'); -- rowid=8
ANALYZE;
PRAGMA cache_size = 5;