Skip to content

Commit

Permalink
move GUC to JDEVELOPER_OPTIONS
Browse files Browse the repository at this point in the history
  • Loading branch information
avamingli committed Oct 9, 2024
1 parent 61b2381 commit 511df86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/backend/utils/misc/guc_gp.c
Original file line number Diff line number Diff line change
Expand Up @@ -3045,7 +3045,7 @@ struct config_bool ConfigureNamesBool_gp[] =
NULL, NULL, NULL
},
{
{"enable_parallel_semi_join", PGC_USERSET, QUERY_TUNING_METHOD,
{"enable_parallel_semi_join", PGC_USERSET, DEVELOPER_OPTIONS,
gettext_noop("allow to use of parallel semi join."),
NULL,
GUC_EXPLAIN
Expand All @@ -3055,7 +3055,7 @@ struct config_bool ConfigureNamesBool_gp[] =
NULL, NULL, NULL
},
{
{"enable_parallel_dedup_semi_join", PGC_USERSET, QUERY_TUNING_METHOD,
{"enable_parallel_dedup_semi_join", PGC_USERSET, DEVELOPER_OPTIONS,
gettext_noop("allow to use of parallel dedup semi join."),
NULL,
GUC_EXPLAIN
Expand All @@ -3065,7 +3065,7 @@ struct config_bool ConfigureNamesBool_gp[] =
NULL, NULL, NULL
},
{
{"enable_parallel_dedup_semi_reverse_join", PGC_USERSET, QUERY_TUNING_METHOD,
{"enable_parallel_dedup_semi_reverse_join", PGC_USERSET, DEVELOPER_OPTIONS,
gettext_noop("allow to use of parallel dedup semi reverse join."),
NULL,
GUC_EXPLAIN
Expand Down

0 comments on commit 511df86

Please sign in to comment.