From fdd4646e6c95e3437828b616b9b124b6f9654112 Mon Sep 17 00:00:00 2001 From: Dj Walker-Morgan <126472455+djw-m@users.noreply.github.com> Date: Wed, 6 Dec 2023 18:44:00 +0000 Subject: [PATCH] Update postgres-configuration.mdx to address invalid ordering --- product_docs/docs/pgd/5/postgres-configuration.mdx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/pgd/5/postgres-configuration.mdx b/product_docs/docs/pgd/5/postgres-configuration.mdx index 3ed58e9cf95..bcead543b7e 100644 --- a/product_docs/docs/pgd/5/postgres-configuration.mdx +++ b/product_docs/docs/pgd/5/postgres-configuration.mdx @@ -15,8 +15,10 @@ For PGD's own settings, see the [PGD settings reference](reference/pgd-settings) To run correctly, PGD requires these Postgres settings: - `wal_level` — Must be set to `logical`, since PGD relies on logical decoding. -- `shared_preload_libraries` — Must start with `bdr`, before other - entries. Don't include `pglogical` in this list +- `shared_preload_libraries` — Must include `bdr` to enable the extension. Most other + extensions can appear before of after the bdr entry in the comma-separated list. One exception + to that is `pgaudit` which must appear in the list before `bdr`. Also, do not include + `pglogical` in this list - `track_commit_timestamp` — Must be set to `on` for conflict resolution to retrieve the timestamp for each conflicting row.