diff --git a/product_docs/docs/pgd/5/reference/pgd-settings.mdx b/product_docs/docs/pgd/5/reference/pgd-settings.mdx index a6927e2afc6..9080ae0b5ee 100644 --- a/product_docs/docs/pgd/5/reference/pgd-settings.mdx +++ b/product_docs/docs/pgd/5/reference/pgd-settings.mdx @@ -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`