repo.or.cz
/
pgsql.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Add get_opfamily_name() function
[pgsql.git]
/
src
/
test
/
examples
/
testlibpq2.sql
blob
e8173e4293b55840384b5d67a9d47a87f61f19ef
1
CREATE SCHEMA TESTLIBPQ2;
2
SET search_path = TESTLIBPQ2;
3
CREATE TABLE TBL1 (i int4);
4
CREATE TABLE TBL2 (i int4);
5
CREATE RULE r1 AS ON INSERT TO TBL1 DO
6
(INSERT INTO TBL2 VALUES (new.i); NOTIFY TBL2);