mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Make /contrib install/uninstall script consistent:
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.
This commit is contained in:
@ -1,3 +1,6 @@
|
||||
-- Adjust this setting to control where the objects get created.
|
||||
SET search_path = public;
|
||||
|
||||
-- dblink_connect now restricts non-superusers to password
|
||||
-- authenticated connections
|
||||
CREATE OR REPLACE FUNCTION dblink_connect (text)
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- Adjust this setting to control where the objects get dropped.
|
||||
SET search_path = public;
|
||||
|
||||
DROP FUNCTION dblink_current_query ();
|
||||
|
||||
DROP FUNCTION dblink_build_sql_update (text, int2vector, int4, _text, _text);
|
||||
|
Reference in New Issue
Block a user