Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pgmq don't manipulate sequences during upgrade #1471

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 0 additions & 67 deletions ansible/files/admin_api_scripts/pg_upgrade_scripts/complete.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,73 +82,6 @@ EOF
# Patching pgmq ownership as it resets during upgrade
HAS_PGMQ=$(run_sql -A -t -c "select count(*) > 0 from pg_extension where extname = 'pgmq';")
if [ "$HAS_PGMQ" = "t" ]; then
PATCH_PGMQ_QUERY=$(cat <<EOF
do \$\$
declare
tbl record;
seq_name text;
new_seq_name text;
archive_table_name text;
begin
-- Loop through each table in the pgmq schema starting with 'q_'
-- Rebuild the pkey column's default to avoid pg_dumpall segfaults
for tbl in
select c.relname as table_name
from pg_catalog.pg_attribute a
join pg_catalog.pg_class c on c.oid = a.attrelid
join pg_catalog.pg_namespace n on n.oid = c.relnamespace
where n.nspname = 'pgmq'
and c.relname like 'q_%'
and a.attname = 'msg_id'
and a.attidentity in ('a', 'd') -- 'a' for ALWAYS, 'd' for BY DEFAULT
loop
-- Check if msg_id is an IDENTITY column for idempotency
-- Define sequence names
seq_name := 'pgmq.' || format ('"%s_msg_id_seq"', tbl.table_name);
new_seq_name := 'pgmq.' || format ('"%s_msg_id_seq2"', tbl.table_name);
archive_table_name := regexp_replace(tbl.table_name, '^q_', 'a_');
-- Execute dynamic SQL to perform the required operations
execute format('
create sequence %s;
select setval(''%s'', nextval(''%s''));
alter table %s."%s" alter column msg_id drop identity;
alter table %s."%s" alter column msg_id set default nextval(''%s'');
alter sequence %s rename to "%s";',
-- Parameters for format placeholders
new_seq_name,
new_seq_name, seq_name,
'pgmq', tbl.table_name,
'pgmq', tbl.table_name,
new_seq_name,
-- alter seq
new_seq_name,
tbl.table_name || '_msg_id_seq'
);
end loop;
-- No tables should be owned by the extension.
-- We want them to be included in logical backups
for tbl in
select c.relname as table_name
from pg_class c
join pg_depend d
on c.oid = d.objid
join pg_extension e
on d.refobjid = e.oid
where
c.relkind in ('r', 'p', 'u')
and e.extname = 'pgmq'
and (c.relname like 'q_%' or c.relname like 'a_%')
loop
execute format('
alter extension pgmq drop table pgmq."%s";',
tbl.table_name
);
end loop;
end \$\$;
EOF
)

run_sql -c "$PATCH_PGMQ_QUERY"
run_sql -c "update pg_extension set extowner = 'postgres'::regrole where extname = 'pgmq';"
fi

Expand Down
Loading