1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Fix insufficient search-path paranoia in SQL function definitions.

Remove setting of search_path in install/uninstall scripts, since unlike
other contrib modules this one does not want to let you change the
installation schema.
This commit is contained in:
Tom Lane
2007-11-13 01:55:49 +00:00
parent 14f461d506
commit e0b15e2748
2 changed files with 2 additions and 9 deletions

View File

@ -1,6 +1,3 @@
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;
DROP FUNCTION pg_catalog.pg_file_write(text, text, bool) ;
DROP FUNCTION pg_catalog.pg_file_rename(text, text, text) ;
DROP FUNCTION pg_catalog.pg_file_rename(text, text) ;