
remove transactions use create or replace function make formatting consistent set search patch on first line Add documentation on modifying *.sql to set the search patch, and mention that major upgrades should still run the installation scripts. Some of these issues were spotted by Tom today.
13 lines
318 B
SQL
13 lines
318 B
SQL
-- 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);
|