mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
13 lines
320 B
SQL
13 lines
320 B
SQL
/* contrib/dict_xsyn/uninstall_dict_xsyn.sql */
|
|
|
|
-- Adjust this setting to control where the objects get dropped.
|
|
SET search_path = public;
|
|
|
|
DROP TEXT SEARCH DICTIONARY xsyn;
|
|
|
|
DROP TEXT SEARCH TEMPLATE xsyn_template;
|
|
|
|
DROP FUNCTION dxsyn_init(internal);
|
|
|
|
DROP FUNCTION dxsyn_lexize(internal,internal,internal,internal);
|