mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +03:00
contrib uninstall scripts
by David Fetter
This commit is contained in:
29
contrib/tablefunc/uninstall_tablefunc.sql
Normal file
29
contrib/tablefunc/uninstall_tablefunc.sql
Normal file
@ -0,0 +1,29 @@
|
||||
SET search_path = public;
|
||||
|
||||
DROP FUNCTION connectby(text,text,text,text,text,int);
|
||||
|
||||
DROP FUNCTION connectby(text,text,text,text,text,int,text);
|
||||
|
||||
DROP FUNCTION connectby(text,text,text,text,int);
|
||||
|
||||
DROP FUNCTION connectby(text,text,text,text,int,text);
|
||||
|
||||
DROP FUNCTION crosstab(text,text);
|
||||
|
||||
DROP FUNCTION crosstab(text,int);
|
||||
|
||||
DROP FUNCTION crosstab4(text);
|
||||
|
||||
DROP FUNCTION crosstab3(text);
|
||||
|
||||
DROP FUNCTION crosstab2(text);
|
||||
|
||||
DROP TYPE tablefunc_crosstab_4;
|
||||
|
||||
DROP TYPE tablefunc_crosstab_3;
|
||||
|
||||
DROP TYPE tablefunc_crosstab_2;
|
||||
|
||||
DROP FUNCTION crosstab(text);
|
||||
|
||||
DROP FUNCTION normal_rand(int4, float8, float8);
|
Reference in New Issue
Block a user