mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
926bbab448
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.
41 lines
929 B
SQL
41 lines
929 B
SQL
-- Adjust this setting to control where the objects get dropped.
|
|
SET search_path = public;
|
|
|
|
DROP OPERATOR CLASS gist_trgm_ops USING gist;
|
|
|
|
DROP FUNCTION gtrgm_same(gtrgm, gtrgm, internal);
|
|
|
|
DROP FUNCTION gtrgm_union(bytea, internal);
|
|
|
|
DROP FUNCTION gtrgm_picksplit(internal, internal);
|
|
|
|
DROP FUNCTION gtrgm_penalty(internal,internal,internal);
|
|
|
|
DROP FUNCTION gtrgm_decompress(internal);
|
|
|
|
DROP FUNCTION gtrgm_compress(internal);
|
|
|
|
DROP FUNCTION gtrgm_consistent(gtrgm,internal,int4);
|
|
|
|
DROP TYPE gtrgm CASCADE;
|
|
|
|
DROP OPERATOR CLASS gin_trgm_ops USING gin;
|
|
|
|
DROP FUNCTION gin_extract_trgm(text, internal);
|
|
|
|
DROP FUNCTION gin_extract_trgm(text, internal, internal);
|
|
|
|
DROP FUNCTION gin_trgm_consistent(internal, internal, text);
|
|
|
|
DROP OPERATOR % (text, text);
|
|
|
|
DROP FUNCTION similarity_op(text,text);
|
|
|
|
DROP FUNCTION similarity(text,text);
|
|
|
|
DROP FUNCTION show_trgm(text);
|
|
|
|
DROP FUNCTION show_limit();
|
|
|
|
DROP FUNCTION set_limit(float4);
|