blob: 9b4f2e6116464e3fb3c0839317046218a61d1d09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $PostgreSQL$ */
-- Adjust this setting to control where the objects get dropped.
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);
|