summaryrefslogtreecommitdiff
path: root/contrib/test_parser/uninstall_test_parser.sql
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-10-15 21:36:50 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-10-15 21:36:50 +0000
commit5fcb079858bb392e87067b5526e9df950db38024 (patch)
tree4ffb764af092be94fbe0e033dce2f492e6c937f7 /contrib/test_parser/uninstall_test_parser.sql
parentfb631dba2a3c2c183bb99f2098491ecf96fb6664 (diff)
downloadpostgresql-5fcb079858bb392e87067b5526e9df950db38024.tar.gz
Add sample text search dictionary templates and parsers, to replace the
hard-to-maintain textual examples currently in the SGML docs. From Sergey Karpov.
Diffstat (limited to 'contrib/test_parser/uninstall_test_parser.sql')
-rw-r--r--contrib/test_parser/uninstall_test_parser.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/contrib/test_parser/uninstall_test_parser.sql b/contrib/test_parser/uninstall_test_parser.sql
new file mode 100644
index 0000000000..d194677d6b
--- /dev/null
+++ b/contrib/test_parser/uninstall_test_parser.sql
@@ -0,0 +1,11 @@
+SET search_path = public;
+
+DROP TEXT SEARCH PARSER testparser;
+
+DROP FUNCTION testprs_start(internal, int4);
+
+DROP FUNCTION testprs_getlexeme(internal, internal, internal);
+
+DROP FUNCTION testprs_end(internal);
+
+DROP FUNCTION testprs_lextype(internal);