diff options
Diffstat (limited to 'src/test/examples/testlibpq2.sql')
-rw-r--r-- | src/test/examples/testlibpq2.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/examples/testlibpq2.sql b/src/test/examples/testlibpq2.sql index f9c74109328..fb7d3535073 100644 --- a/src/test/examples/testlibpq2.sql +++ b/src/test/examples/testlibpq2.sql @@ -2,4 +2,5 @@ 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]; +CREATE RULE r1 AS ON INSERT TO TBL1 DO +(INSERT INTO TBL2 VALUES (new.i); NOTIFY TBL2); |