From: | Richard Guo <rguo(at)postgresql(dot)org> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Fix const-simplification for constraints and stats |
Date: | 2025-08-31 00:00:40 |
Message-ID: | E1usVUt-002TAd-2i@gemulon.postgresql.org |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Fix const-simplification for constraints and stats
Constraint expressions and statistics expressions loaded from the
system catalogs need to be run through const-simplification, because
the planner will be comparing them to similarly-processed qual
clauses. Without this step, the planner may fail to detect valid
matches.
Currently, NullTest clauses in these expressions may not be reduced
correctly during const-simplification. This happens because their Var
nodes do not yet have the correct varno when eval_const_expressions is
applied. Since eval_const_expressions relies on varno to reduce
NullTest quals, incorrect varno can cause problems.
Additionally, for statistics expressions, eval_const_expressions is
called with root set to NULL, which also inhibits NullTest reduction.
This patch fixes the issue by ensuring that Vars are updated to have
the correct varno before const-simplification, and that a valid root
is passed to eval_const_expressions when needed.
Author: Richard Guo <guofenglinux(at)gmail(dot)com>
Discussion: https://postgr.es/m/19007-4cc6e252ed8aa54a@postgresql.org
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/317c117d6d23cff98c1259701495422bc952a7dd
Modified Files
--------------
src/backend/optimizer/util/plancat.c | 46 ++++++++++++++++++++-------------
src/test/regress/expected/predicate.out | 27 +++++++++++++++++++
src/test/regress/sql/predicate.sql | 20 ++++++++++++++
3 files changed, 75 insertions(+), 18 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Paquier | 2025-09-01 00:05:45 | pgsql: postgres_fdw: Use psql variables for connection parameters |
Previous Message | Bruce Momjian | 2025-08-30 22:26:35 | pgsql: add_commit_links.pl: error out if missing major version number |