pg14_support_3
Sait Talha Nisanci 2021-08-24 19:41:50 +03:00
parent b59e78d095
commit 5d8c89133d
3 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,7 @@ BEGIN
objid IN (SELECT oid FROM pg_proc WHERE proname = 'array_cat_agg') AND
refobjid IN (select oid from pg_extension where extname = 'citus');
DROP AGGREGATE IF EXISTS array_cat_agg(anyarray);
DROP AGGREGATE IF EXISTS array_cat_agg(anycompatiblearray);
--
-- Drop existing backup tables
--

View File

@ -9,6 +9,7 @@ BEGIN
objid IN (SELECT oid FROM pg_proc WHERE proname = 'array_cat_agg') AND
refobjid IN (select oid from pg_extension where extname = 'citus');
DROP AGGREGATE IF EXISTS array_cat_agg(anyarray);
DROP AGGREGATE IF EXISTS array_cat_agg(anycompatiblearray);
--
-- Drop existing backup tables
--

View File

@ -4,6 +4,7 @@ from config import USER
def psql(pg_path, port, command):
print("RUNNING ", command)
return subprocess.check_output([
os.path.join(pg_path, 'psql'),
'-U', USER,