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