0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-05-11 04:55:31 +00:00
Files
libsql/libsql-wal/tests/assets/fixtures/with4.test
ad hoc ad79ef48a2 libsql wal tests (#1408)
* add tests

* add bench
2024-05-24 13:59:17 +00:00

8 lines
147 B
Plaintext

ATTACH ':memory:' AS aux;
CREATE TABLE main.t1(a,b);
CREATE TABLE aux.t2(x,y);
INSERT INTO t1 VALUES(1,2);
INSERT INTO t2 VALUES(3,4);