Fix obsolete comment regarding FSM truncation.
[PostgreSQL.git] / src / test / examples / testlibpq2.sql
blobfb7d3535073500b1179ae4924768153effc8600f
1 CREATE TABLE TBL1 (i int4);
3 CREATE TABLE TBL2 (i int4);
5 CREATE RULE r1 AS ON INSERT TO TBL1 DO
6 (INSERT INTO TBL2 VALUES (new.i); NOTIFY TBL2);