aboutsummaryrefslogtreecommitdiff
path: root/src/test/examples/testlibpq2.sql
blob: 1686c3ed0dfff0c19f21ce599405f6ba6fabb039 (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);