From 42d7cf8ae5b966dd901bf3695732423a9e9e2e52 Mon Sep 17 00:00:00 2001 From: laurenceisla Date: Fri, 15 Oct 2021 19:09:40 -0500 Subject: [PATCH] Add db-embed-default-join config parameter to the configuration example --- src/PostgREST/CLI.hs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/PostgREST/CLI.hs b/src/PostgREST/CLI.hs index 40a2a2c2e..f70183b1b 100644 --- a/src/PostgREST/CLI.hs +++ b/src/PostgREST/CLI.hs @@ -166,6 +166,10 @@ exampleConfigFile = |## Enable in-database configuration |db-config = true | + |## Determines the default join type when resource embedding + |## Admitted values: left, inner + |db-embed-default-join = "left" + | |## Determine if GUC request settings for headers, cookies and jwt claims use the legacy names (string with dashes, invalid starting from PostgreSQL v14) with text values instead of the new names (string without dashes, valid on all PostgreSQL versions) with json values. |## For PostgreSQL v14 and up, this setting will be ignored. |db-use-legacy-gucs = true