repo.or.cz
/
PostgreSQL.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Fix obsolete comment regarding FSM truncation.
[PostgreSQL.git]
/
src
/
test
/
examples
/
testlibpq2.sql
blob
fb7d3535073500b1179ae4924768153effc8600f
1
CREATE TABLE TBL1 (i int4);
2
3
CREATE TABLE TBL2 (i int4);
4
5
CREATE RULE r1 AS ON INSERT TO TBL1 DO
6
(INSERT INTO TBL2 VALUES (new.i); NOTIFY TBL2);