summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rowley2023-04-13 22:19:45 +0000
committerDavid Rowley2023-04-13 22:19:45 +0000
commit0981846b9c3ab1dcc351798dcae6a2e35872a6c3 (patch)
tree30f540a75ab7d0799d62ddfc966689d4f3ad168e
parent83c470665822befb3bda92320defe766936b60df (diff)
Remove old GUC name mapping for "force_parallel_mode"
This GUC was renamed to debug_parallel_query in 5352ca22e. That commit added an entry into map_old_guc_names[] to allow the old name still to work. That was done to allow a transition time where the buildfarm configs could be swapped over to use debug_parallel_query instead. That work is now complete. Here we remove the old name with the intention of breaking any user code which is using force_parallel_query. As mentioned in the commit message for 5352ca22e, it appeared many users were misled into thinking that setting this GUC was doing something useful for them to make queries run more quickly. Discussion: https://postgr.es/m/CAApHDvoR7EOz7Tvyzrd18FO-Dw2Cp4Uyq25TEWguK+XyCJtzOw@mail.gmail.com
-rw-r--r--src/backend/utils/misc/guc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index ea67cfa5e5..7d3b20168a 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -186,7 +186,6 @@ static const unit_conversion time_unit_conversion_table[] =
static const char *const map_old_guc_names[] = {
"sort_mem", "work_mem",
"vacuum_mem", "maintenance_work_mem",
- "force_parallel_mode", "debug_parallel_query",
NULL
};