summaryrefslogtreecommitdiff
path: root/src/test/examples/testlibpq2.sql
blob: fb7d3535073500b1179ae4924768153effc8600f (plain)
1
2
3
4
5
6
CREATE TABLE TBL1 (i int4);

CREATE TABLE TBL2 (i int4);

CREATE RULE r1 AS ON INSERT TO TBL1 DO
(INSERT INTO TBL2 VALUES (new.i); NOTIFY TBL2);