mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-12 15:33:44 +00:00
ad79ef48a2
* add tests * add bench
15 lines
230 B
Plaintext
15 lines
230 B
Plaintext
|
|
ATTACH DATABASE '' AS aux;
|
|
CREATE TABLE IF NOT EXISTS aux.t1(a, b);
|
|
CREATE TEMPORARY TRIGGER tr1 DELETE ON t1 BEGIN
|
|
DELETE FROM t1;
|
|
END;
|
|
CREATE TABLE temp.t1(a, b);
|
|
|
|
|
|
DETACH DATABASE aux;
|
|
|
|
|
|
DROP TRIGGER tr1;
|
|
|