From: | Daniel Gustafsson <daniel(at)yesql(dot)se> |
---|---|
To: | Alexander Korotkov <akorotkov(at)postgresql(dot)org> |
Cc: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | Re: pgsql: Put enable_self_join_elimination into postgresql.conf.sample |
Date: | 2025-04-06 11:10:00 |
Message-ID: | D292EB44-806E-439A-82A4-491A1BA59E7A@yesql.se |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
> On 6 Apr 2025, at 12:27, Alexander Korotkov <akorotkov(at)postgresql(dot)org> wrote:
>
> 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.
The GUC is marked GUC_NOT_IN_SAMPLE:
+ {"enable_self_join_elimination", PGC_USERSET, QUERY_TUNING_METHOD,
+ gettext_noop("Enable removal of unique self-joins."),
+ NULL,
+ GUC_EXPLAIN | GUC_NOT_IN_SAMPLE
+ },
..which is causing an error in the buildfarm:
# Failed test 'no parameters missing from guc_tables.c'
# at t/003_check_guc.pl line 89.
# got: '1'
# expected: '0'
# Failed test 'no parameters marked as NOT_IN_SAMPLE in postgresql.conf.sample'
# at t/003_check_guc.pl line 92.
# got: '1'
# expected: '0'
# Looks like you failed 2 tests of 3.
--
Daniel Gustafsson
From | Date | Subject | |
---|---|---|---|
Next Message | Alexander Korotkov | 2025-04-06 11:30:04 | Re: pgsql: Put enable_self_join_elimination into postgresql.conf.sample |
Previous Message | Alexander Korotkov | 2025-04-06 10:27:31 | pgsql: Put enable_self_join_elimination into postgresql.conf.sample |