mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-12-15 08:39:46 +00:00
ad79ef48a2
* add tests * add bench
11 lines
209 B
Plaintext
11 lines
209 B
Plaintext
|
|
CREATE TABLE x1(z, b);
|
|
CREATE TRIGGER BEFORE INSERT ON x1 BEGIN
|
|
DELETE FROM sqlite_dbpage WHERE pgno=100;
|
|
UPDATE sqlite_dbpage SET data=null WHERE pgno=100;
|
|
END;
|
|
|
|
|
|
PRAGMA trusted_schema = 1;
|
|
|