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

10 lines
188 B
Plaintext

CREATE TABLE q1(r INTEGER PRIMARY KEY, s TEXT);
WITH d(a, b) AS (
SELECT 0, ''
UNION ALL
SELECT a+1, b||'.' FROM d WHERE a<10000
)
INSERT INTO q1 SELECT * FROM d;