aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Korotkov <akorotkov@postgresql.org>2025-04-06 13:24:16 +0300
committerAlexander Korotkov <akorotkov@postgresql.org>2025-04-06 13:24:16 +0300
commitc2d329260cd885a937014cecd38b51bdeae65216 (patch)
treef24d0c2cb66a044b4677ab80e05725d0651380bc
parent3c6e8c123896584f1be1fe69aaf68dcb5eb094d5 (diff)
downloadpostgresql-c2d329260cd885a937014cecd38b51bdeae65216.tar.gz
postgresql-c2d329260cd885a937014cecd38b51bdeae65216.zip
Put enable_self_join_elimination into postgresql.conf.sample
fc069a3a6319 implements Self-Join Elimination (SJE) and provides a new GUC variable: enable_self_join_elimination. This commit adds enable_self_join_elimination to the postgresql.conf.sample, as it was forgotten in the original commit. Discussion: https://postgr.es/m/CAHewXN%3D%2Bghd6O6im46q7j2u6c3H6vkXtXmF%3D_v4CfGSnjje8PA%40mail.gmail.com Author: Tender Wang <tndrwang@gmail.com>
-rw-r--r--src/backend/utils/misc/postgresql.conf.sample1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample
index ff56a1f0732..bcd4e67f43e 100644
--- a/src/backend/utils/misc/postgresql.conf.sample
+++ b/src/backend/utils/misc/postgresql.conf.sample
@@ -427,6 +427,7 @@
#enable_tidscan = on
#enable_group_by_reordering = on
#enable_distinct_reordering = on
+#enable_self_join_elimination = on
# - Planner Cost Constants -