diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2018-02-16 10:33:59 -0500 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2018-02-16 10:33:59 -0500 |
| commit | 2fb1abaeb016aeb45b9e6d0b81b7a7e92bb251b9 (patch) | |
| tree | dbaa85975553ce1c440d786a0c16bfa95c014e5e /src/backend/utils/misc/guc.c | |
| parent | f8437c819acc37b43bd2d5b19a6b7609b4ea1292 (diff) | |
| download | postgresql-2fb1abaeb016aeb45b9e6d0b81b7a7e92bb251b9.tar.gz | |
Rename enable_partition_wise_join to enable_partitionwise_join
Discussion: https://www.postgresql.org/message-id/flat/ad24e4f4-6481-066e-e3fb-6ef4a3121882%402ndquadrant.com
Diffstat (limited to 'src/backend/utils/misc/guc.c')
| -rw-r--r-- | src/backend/utils/misc/guc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 87ba67661a..1db7845d5a 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -914,11 +914,11 @@ static struct config_bool ConfigureNamesBool[] = NULL, NULL, NULL }, { - {"enable_partition_wise_join", PGC_USERSET, QUERY_TUNING_METHOD, - gettext_noop("Enables partition-wise join."), + {"enable_partitionwise_join", PGC_USERSET, QUERY_TUNING_METHOD, + gettext_noop("Enables partitionwise join."), NULL }, - &enable_partition_wise_join, + &enable_partitionwise_join, false, NULL, NULL, NULL }, |
