From 16d9eb8a24aa645514a2c269ceb15fcf846a5979 Mon Sep 17 00:00:00 2001 From: William Ivanski Date: Tue, 7 Jul 2026 17:20:33 -0300 Subject: [PATCH 1/2] Update manual overview for PGD 5 upgrade steps Clarified instructions for verifying SCRAM hashes across PGD 5.9 nodes and specified the need for superuser access. --- .../docs/pgd/6.4/lifecycle/upgrades/manual_overview.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/pgd/6.4/lifecycle/upgrades/manual_overview.mdx b/product_docs/docs/pgd/6.4/lifecycle/upgrades/manual_overview.mdx index 643d468c917..bb00acdd9a8 100644 --- a/product_docs/docs/pgd/6.4/lifecycle/upgrades/manual_overview.mdx +++ b/product_docs/docs/pgd/6.4/lifecycle/upgrades/manual_overview.mdx @@ -243,7 +243,7 @@ that the upgraded node is working as expected. Use the following steps to move from PGD Proxy to Connection Manager: -1. From one of the PGD 5.9 nodes, run the following query to ensure that SCRAM hashes of all user passwords are the same across all nodes: +1. From one of the PGD 5.9 nodes, as a database superuser, and while connected to the PGD-enabled database, run the following query to ensure that SCRAM hashes of all user passwords are the same across all nodes: - ```sql DO $$ @@ -259,7 +259,7 @@ Use the following steps to move from PGD Proxy to Connection Manager: END LOOP; END; $$; - SELECT wait_slot_confirm_lsn(NULL, NULL); + SELECT bdr.wait_slot_confirm_lsn(NULL, NULL); ``` - !!!Note From 9e35170bd356264c3fb36bbe9b3059502a94c6aa Mon Sep 17 00:00:00 2001 From: Mireia Perez Fuster Date: Wed, 8 Jul 2026 10:43:44 +0200 Subject: [PATCH 2/2] Port to other versions and fix command on other occurrences --- product_docs/docs/pgd/5.9/connection-manager/overview.mdx | 2 +- product_docs/docs/pgd/6.1/upgrades/manual_overview.mdx | 4 ++-- .../docs/pgd/6.1/upgrades/upgrading_major_rolling.mdx | 2 +- .../docs/pgd/6.2/lifecycle/upgrades/manual_overview.mdx | 4 ++-- .../pgd/6.2/lifecycle/upgrades/upgrading_major_rolling.mdx | 2 +- .../docs/pgd/6.3/lifecycle/upgrades/manual_overview.mdx | 4 ++-- .../pgd/6.3/lifecycle/upgrades/upgrading_major_rolling.mdx | 2 +- .../pgd/6.4/lifecycle/upgrades/upgrading_major_rolling.mdx | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/product_docs/docs/pgd/5.9/connection-manager/overview.mdx b/product_docs/docs/pgd/5.9/connection-manager/overview.mdx index 02028f34a7c..45f0029645f 100644 --- a/product_docs/docs/pgd/5.9/connection-manager/overview.mdx +++ b/product_docs/docs/pgd/5.9/connection-manager/overview.mdx @@ -47,7 +47,7 @@ Use the following steps to move from PGD Proxy to Connection Manager: END LOOP; END; $$; - SELECT wait_slot_confirm_lsn(NULL, NULL); + SELECT bdr.wait_slot_confirm_lsn(NULL, NULL); ``` !!!Note diff --git a/product_docs/docs/pgd/6.1/upgrades/manual_overview.mdx b/product_docs/docs/pgd/6.1/upgrades/manual_overview.mdx index 0b2dd407f2b..f10757fcd3e 100644 --- a/product_docs/docs/pgd/6.1/upgrades/manual_overview.mdx +++ b/product_docs/docs/pgd/6.1/upgrades/manual_overview.mdx @@ -240,7 +240,7 @@ that the upgraded node is working as expected. Use the following steps to move from PGD Proxy to Connection Manager: -1. From one of the PGD 5.9 nodes, run the following query to ensure that SCRAM hashes of all user passwords are the same across all nodes: +1. From one of the PGD 5.9 nodes, as a database superuser, and while connected to the PGD-enabled database, run the following query to ensure that SCRAM hashes of all user passwords are the same across all nodes: - ```sql DO $$ @@ -256,7 +256,7 @@ Use the following steps to move from PGD Proxy to Connection Manager: END LOOP; END; $$; - SELECT wait_slot_confirm_lsn(NULL, NULL); + SELECT bdr.wait_slot_confirm_lsn(NULL, NULL); ``` - !!!Note diff --git a/product_docs/docs/pgd/6.1/upgrades/upgrading_major_rolling.mdx b/product_docs/docs/pgd/6.1/upgrades/upgrading_major_rolling.mdx index dd689d66540..209f1d2edcf 100644 --- a/product_docs/docs/pgd/6.1/upgrades/upgrading_major_rolling.mdx +++ b/product_docs/docs/pgd/6.1/upgrades/upgrading_major_rolling.mdx @@ -262,7 +262,7 @@ BEGIN END LOOP; END; $$; -SELECT wait_slot_confirm_lsn(NULL,NULL); +SELECT bdr.wait_slot_confirm_lsn(NULL,NULL); ``` ### Enable routing Enable node group routing as per your global or local routing requirement. For local routing enable it on subgroups, for global routing enable it on the top group. diff --git a/product_docs/docs/pgd/6.2/lifecycle/upgrades/manual_overview.mdx b/product_docs/docs/pgd/6.2/lifecycle/upgrades/manual_overview.mdx index 643d468c917..bb00acdd9a8 100644 --- a/product_docs/docs/pgd/6.2/lifecycle/upgrades/manual_overview.mdx +++ b/product_docs/docs/pgd/6.2/lifecycle/upgrades/manual_overview.mdx @@ -243,7 +243,7 @@ that the upgraded node is working as expected. Use the following steps to move from PGD Proxy to Connection Manager: -1. From one of the PGD 5.9 nodes, run the following query to ensure that SCRAM hashes of all user passwords are the same across all nodes: +1. From one of the PGD 5.9 nodes, as a database superuser, and while connected to the PGD-enabled database, run the following query to ensure that SCRAM hashes of all user passwords are the same across all nodes: - ```sql DO $$ @@ -259,7 +259,7 @@ Use the following steps to move from PGD Proxy to Connection Manager: END LOOP; END; $$; - SELECT wait_slot_confirm_lsn(NULL, NULL); + SELECT bdr.wait_slot_confirm_lsn(NULL, NULL); ``` - !!!Note diff --git a/product_docs/docs/pgd/6.2/lifecycle/upgrades/upgrading_major_rolling.mdx b/product_docs/docs/pgd/6.2/lifecycle/upgrades/upgrading_major_rolling.mdx index 3039ab0390d..55f657fe3fa 100644 --- a/product_docs/docs/pgd/6.2/lifecycle/upgrades/upgrading_major_rolling.mdx +++ b/product_docs/docs/pgd/6.2/lifecycle/upgrades/upgrading_major_rolling.mdx @@ -272,7 +272,7 @@ BEGIN END LOOP; END; $$; -SELECT wait_slot_confirm_lsn(NULL,NULL); +SELECT bdr.wait_slot_confirm_lsn(NULL,NULL); ``` ### Enable routing Enable node group routing as per your global or local routing requirement. For local routing enable it on subgroups, for global routing enable it on the top group. diff --git a/product_docs/docs/pgd/6.3/lifecycle/upgrades/manual_overview.mdx b/product_docs/docs/pgd/6.3/lifecycle/upgrades/manual_overview.mdx index 643d468c917..bb00acdd9a8 100644 --- a/product_docs/docs/pgd/6.3/lifecycle/upgrades/manual_overview.mdx +++ b/product_docs/docs/pgd/6.3/lifecycle/upgrades/manual_overview.mdx @@ -243,7 +243,7 @@ that the upgraded node is working as expected. Use the following steps to move from PGD Proxy to Connection Manager: -1. From one of the PGD 5.9 nodes, run the following query to ensure that SCRAM hashes of all user passwords are the same across all nodes: +1. From one of the PGD 5.9 nodes, as a database superuser, and while connected to the PGD-enabled database, run the following query to ensure that SCRAM hashes of all user passwords are the same across all nodes: - ```sql DO $$ @@ -259,7 +259,7 @@ Use the following steps to move from PGD Proxy to Connection Manager: END LOOP; END; $$; - SELECT wait_slot_confirm_lsn(NULL, NULL); + SELECT bdr.wait_slot_confirm_lsn(NULL, NULL); ``` - !!!Note diff --git a/product_docs/docs/pgd/6.3/lifecycle/upgrades/upgrading_major_rolling.mdx b/product_docs/docs/pgd/6.3/lifecycle/upgrades/upgrading_major_rolling.mdx index 3039ab0390d..55f657fe3fa 100644 --- a/product_docs/docs/pgd/6.3/lifecycle/upgrades/upgrading_major_rolling.mdx +++ b/product_docs/docs/pgd/6.3/lifecycle/upgrades/upgrading_major_rolling.mdx @@ -272,7 +272,7 @@ BEGIN END LOOP; END; $$; -SELECT wait_slot_confirm_lsn(NULL,NULL); +SELECT bdr.wait_slot_confirm_lsn(NULL,NULL); ``` ### Enable routing Enable node group routing as per your global or local routing requirement. For local routing enable it on subgroups, for global routing enable it on the top group. diff --git a/product_docs/docs/pgd/6.4/lifecycle/upgrades/upgrading_major_rolling.mdx b/product_docs/docs/pgd/6.4/lifecycle/upgrades/upgrading_major_rolling.mdx index 3039ab0390d..55f657fe3fa 100644 --- a/product_docs/docs/pgd/6.4/lifecycle/upgrades/upgrading_major_rolling.mdx +++ b/product_docs/docs/pgd/6.4/lifecycle/upgrades/upgrading_major_rolling.mdx @@ -272,7 +272,7 @@ BEGIN END LOOP; END; $$; -SELECT wait_slot_confirm_lsn(NULL,NULL); +SELECT bdr.wait_slot_confirm_lsn(NULL,NULL); ``` ### Enable routing Enable node group routing as per your global or local routing requirement. For local routing enable it on subgroups, for global routing enable it on the top group.