summaryrefslogtreecommitdiff
path: root/src/backend/utils/misc/guc.c
diff options
context:
space:
mode:
authorPeter Geoghegan <pg@bowt.ie>2020-07-27 17:53:19 -0700
committerPeter Geoghegan <pg@bowt.ie>2020-07-27 17:53:19 -0700
commitbcbf9446a2983b6452c19cc50050456be262f7c5 (patch)
tree7fdce835d3d645f71eefa28e247014bc3f25e589 /src/backend/utils/misc/guc.c
parenta3ab7a707d9eda4b2162273348cba52252c0f0c9 (diff)
Remove hashagg_avoid_disk_plan GUC.
Note: This GUC was originally named enable_hashagg_disk when it appeared in commit 1f39bce0, which added disk-based hash aggregation. It was subsequently renamed in commit 92c58fd9. Author: Peter Geoghegan Reviewed-By: Jeff Davis, Álvaro Herrera Discussion: https://postgr.es/m/9d9d1e1252a52ea1bad84ea40dbebfd54e672a0f.camel%40j-davis.com Backpatch: 13-, where disk-based hash aggregation was introduced.
Diffstat (limited to 'src/backend/utils/misc/guc.c')
-rw-r--r--src/backend/utils/misc/guc.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index 6f603cbbe8c..abfa95a2314 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -1007,16 +1007,6 @@ static struct config_bool ConfigureNamesBool[] =
NULL, NULL, NULL
},
{
- {"hashagg_avoid_disk_plan", PGC_USERSET, QUERY_TUNING_METHOD,
- gettext_noop("Causes the planner to avoid hashed aggregation plans that are expected to use the disk."),
- NULL,
- GUC_EXPLAIN
- },
- &hashagg_avoid_disk_plan,
- false,
- NULL, NULL, NULL
- },
- {
{"enable_material", PGC_USERSET, QUERY_TUNING_METHOD,
gettext_noop("Enables the planner's use of materialization."),
NULL,