0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-07-20 22:39:18 +00:00
Files
libsql/libsql-sqlite3/test/fixtures/tkt-f67b41381a.test
2024-05-27 12:59:10 +02:00

9 lines
173 B
Plaintext

CREATE TABLE t1(a);
INSERT INTO t1 VALUES(1);
ALTER TABLE t1 ADD COLUMN b DEFAULT 2;
CREATE TABLE t2(a, b);
INSERT INTO t2 SELECT * FROM t1;
SELECT * FROM t2;