summaryrefslogtreecommitdiff
path: root/src/interfaces/libpq++/examples/testlibpq4.sql
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>2002-08-22 00:15:14 +0000
committerMarc G. Fournier <scrappy@hub.org>2002-08-22 00:15:14 +0000
commitda4683fbe1cba48cf5b5b29055b66e0bacb00162 (patch)
tree87834b1b18614313e895dcc8c504f58af9f6b4b2 /src/interfaces/libpq++/examples/testlibpq4.sql
parentb663f3443ba096a06970214c3e83e79f6e570b84 (diff)
downloadpostgresql-da4683fbe1cba48cf5b5b29055b66e0bacb00162.tar.gz
Okay, libpq++ is moved to GBorg, and all traces of it have been removed
from the core repository ... I haven't *moved* the libpq++ files out of the tree, mainly as we want to keep them in place for past branches ... Peter, I think I've covered all the files I need, and re-ran autoconf to make sure the configure file is in place properly ...
Diffstat (limited to 'src/interfaces/libpq++/examples/testlibpq4.sql')
-rw-r--r--src/interfaces/libpq++/examples/testlibpq4.sql5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/interfaces/libpq++/examples/testlibpq4.sql b/src/interfaces/libpq++/examples/testlibpq4.sql
deleted file mode 100644
index 53d3fdfffa..0000000000
--- a/src/interfaces/libpq++/examples/testlibpq4.sql
+++ /dev/null
@@ -1,5 +0,0 @@
-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);