mirror of
https://github.com/postgres/postgres.git
synced 2025-11-14 00:05:25 -05:00
13 lines
330 B
SQL
13 lines
330 B
SQL
/* contrib/dict_int/uninstall_dict_int.sql */
|
|
|
|
-- Adjust this setting to control where the objects get dropped.
|
|
SET search_path = public;
|
|
|
|
DROP TEXT SEARCH DICTIONARY intdict;
|
|
|
|
DROP TEXT SEARCH TEMPLATE intdict_template;
|
|
|
|
DROP FUNCTION dintdict_init(internal);
|
|
|
|
DROP FUNCTION dintdict_lexize(internal,internal,internal,internal);
|