mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
config
contrib
adminpack
btree_gist
chkpass
citext
cube
dblink
dict_int
dict_xsyn
earthdistance
fuzzystrmatch
hstore
intagg
intarray
isn
lo
ltree
oid2name
pageinspect
pg_buffercache
pg_freespacemap
pg_standby
pg_trgm
pgbench
pgcrypto
pgrowlocks
pgstattuple
seg
spi
sslinfo
start-scripts
tablefunc
data
expected
sql
Makefile
tablefunc.c
tablefunc.h
tablefunc.sql.in
uninstall_tablefunc.sql
test_parser
tsearch2
uuid-ossp
vacuumlo
xml2
Makefile
README
contrib-global.mk
doc
src
COPYRIGHT
GNUmakefile.in
Makefile
README
README.CVS
aclocal.m4
configure
configure.in
33 lines
770 B
SQL
33 lines
770 B
SQL
/* $PostgreSQL: pgsql/contrib/tablefunc/uninstall_tablefunc.sql,v 1.3 2007/11/13 04:24:29 momjian Exp $ */
|
|
|
|
-- Adjust this setting to control where the objects get dropped.
|
|
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);
|