mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-01-09 18:06:02 +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;
|
|
|