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

Edits to DOCS-911 - Added warning to reference entry for bdr.default_… #5891

Merged
merged 1 commit into from
Jul 31, 2024
Merged
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
4 changes: 2 additions & 2 deletions product_docs/docs/pgd/5/reference/pgd-settings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ Setting the replica identity of tables to `full` increases the volume of
WAL written and the amount of data replicated on the wire for the table.

!!! warning On setting bdr.default_replica_identity to default
When setting `bdr.default_replica_identity` to `default` using `ALTER SYSTEM`
When setting `bdr.default_replica_identity` to `default` using `ALTER SYSTEM`,
always quote the value, like this:
```sql
ALTER SYSTEM SET bdr.default_replica_identity="default";
```
This is because default, unquoted, is a special value to the [ALTER SYSTEM](https://www.postgresql.org/docs/current/sql-altersystem.html) command which triggers the removal of the setting from the configuration file. This results in the system using the PGD default setting which is `auto`.
You need to include the quotes because default, unquoted, is a special value to the [ALTER SYSTEM](https://www.postgresql.org/docs/current/sql-altersystem.html) command that triggers the removal of the setting from the configuration file. When the setting is removed, the system uses the PGD default setting, which is `auto`.
!!!

### `bdr.ddl_replication`
Expand Down