Fix HAVING-to-WHERE pushdown with nondeterministic collations
Richard Guo <rguo@postgresql.org>
Fix HAVING-to-WHERE pushdown with nondeterministic collations When GROUP BY uses a nondeterministic collation, the planner's optimization of moving HAVING clauses to WHERE can produce incorrect query results. The HAVING clause may apply a stricter collation that distinguishes values the GROUP BY considers equal. Pushing such a clause to WHERE causes it to filter individual rows before grouping, potentially eliminating group members and changing aggregate results. Fix this by detecting collation conflicts before flatten_group_exprs, while the HAVING clause still contains GROUP Vars (Vars referencing RTE_GROUP). At that point, each GROUP Var directly carries the GROUP BY collation as its varcollid, making it straightforward to compare against the operator's inputcollid. A mismatch where the GROUP BY collation is nondeterministic means the clause is unsafe to push down. RowCompareExpr is treated specially, since it carries per-column inputcollids[] rather than a single inputcollid. The conflicting clause indices are recorded in a Bitmapset and consulted during the existing HAVING-to-WHERE loop, so that only affected clauses are kept in HAVING; other safe clauses in the same query are still pushed. Back-patch to v18 only. The fix relies on the RTE_GROUP mechanism introduced in v18 (commit 247dea89f), which is what lets us identify grouping expressions and their resolved collations via GROUP Vars on pre-flatten havingQual. Pre-v18 branches lack that machinery, so a back-patch there would need a different approach. Given the absence of field reports of this bug on back branches, the risk of carrying a different fix on stable branches is not justified. Author: Richard Guo <guofenglinux@gmail.com> Reviewed-by: wenhui qiu <qiuwenhuifx@gmail.com> Discussion: https://postgr.es/m/CAMbWs48Dn2wW6XM94GZsoyMiH42=KgMo+WcobPKuWvGYnWaPOQ@mail.gmail.com Backpatch-through: 18
Files
| Path | Change | +/− |
|---|---|---|
| src/backend/optimizer/plan/planner.c | modified | +188 −0 |
| src/test/regress/expected/collate.icu.utf8.out | modified | +213 −0 |
| src/test/regress/sql/collate.icu.utf8.sql | modified | +66 −0 |
| src/tools/pgindent/typedefs.list | modified | +1 −0 |
Discussion
- Fix HAVING-to-WHERE pushdown with nondeterministic collations 8 messages · 2026-03-31 → 2026-05-08