From 9fbd53dea5d513a78ca04834101ca1aa73b63e59 Mon Sep 17 00:00:00 2001 From: Álvaro Herrera Date: Thu, 27 Mar 2025 13:33:37 +0100 Subject: Remove the query_id_squash_values GUC Commit 62d712ecfd94 introduced the capability to calculate the same queryId for queries with different lengths of constants in a list for an IN clause. This behavior was originally enabled with a GUC query_id_squash_values. After a discussion about the value of such a GUC, it was decided to back out of the use of a GUC and make the squashing behavior the only available option. Author: Sami Imseih Discussion: https://postgr.es/m/Z-LZyygkkNyA8-kR@msg.df7cb.de Discussion: https://postgr.es/m/CA+q6zcVTK-3C-8NWV1oY2NZrvtnMCDqnyYYyk1T7WMUG65MeOQ@mail.gmail.com --- src/backend/utils/misc/guc_tables.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/backend/utils/misc/guc_tables.c') diff --git a/src/backend/utils/misc/guc_tables.c b/src/backend/utils/misc/guc_tables.c index 989825d3a9c..76c7c6bb4b1 100644 --- a/src/backend/utils/misc/guc_tables.c +++ b/src/backend/utils/misc/guc_tables.c @@ -2122,16 +2122,6 @@ struct config_bool ConfigureNamesBool[] = NULL, NULL, NULL }, - { - {"query_id_squash_values", PGC_USERSET, STATS_MONITORING, - gettext_noop("Allows to merge constants in a list when computing " - "query_id."), - }, - &query_id_squash_values, - false, - NULL, NULL, NULL - }, - { {"vacuum_truncate", PGC_USERSET, VACUUM_DEFAULT, gettext_noop("Enables vacuum to truncate empty pages at the end of the table."), -- cgit v1.2.3