diff options
| author | Álvaro Herrera | 2025-03-27 12:33:37 +0000 |
|---|---|---|
| committer | Álvaro Herrera | 2025-03-27 12:33:37 +0000 |
| commit | 9fbd53dea5d513a78ca04834101ca1aa73b63e59 (patch) | |
| tree | 6d7bedd62113958f907c20e6cabd8649c740947d /src/include/nodes | |
| parent | 5d5f415816a60a3c5c5e4420eff55e73edfbd9f5 (diff) | |
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 <samimseih@gmail.com>
Discussion: https://postgr.es/m/Z-LZyygkkNyA8-kR@msg.df7cb.de
Discussion: https://postgr.es/m/CA+q6zcVTK-3C-8NWV1oY2NZrvtnMCDqnyYYyk1T7WMUG65MeOQ@mail.gmail.com
Diffstat (limited to 'src/include/nodes')
| -rw-r--r-- | src/include/nodes/queryjumble.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/nodes/queryjumble.h b/src/include/nodes/queryjumble.h index 62794c5a901..da7c7abed2e 100644 --- a/src/include/nodes/queryjumble.h +++ b/src/include/nodes/queryjumble.h @@ -86,7 +86,6 @@ extern JumbleState *JumbleQuery(Query *query); extern void EnableQueryId(void); extern PGDLLIMPORT bool query_id_enabled; -extern PGDLLIMPORT bool query_id_squash_values; /* * Returns whether query identifier computation has been enabled, either |
