mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-13 12:28:30 +00:00
ad79ef48a2
* add tests * add bench
7 lines
215 B
Plaintext
7 lines
215 B
Plaintext
|
|
PRAGMA page_size = 4096;
|
|
CREATE TABLE t0(a INTEGER PRIMARY KEY, b, c, UNIQUE(b, c));
|
|
WITH s(i) AS ( SELECT 1 UNION ALL SELECT i+1 FROM s LIMIT 100 )
|
|
INSERT INTO t0 SELECT i, 't0', randomblob(800) FROM s;
|
|
|