Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions product_docs/docs/pgd/6.1/upgrades/manual_overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 $$
Expand All @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 $$
Expand All @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 $$
Expand All @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 $$
Expand All @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading