pgsql: Ignore nullingrels when looking up statistics - Mailing list pgsql-committers

From Richard Guo
Subject pgsql: Ignore nullingrels when looking up statistics
Date
Msg-id E1tTHCG-002cPx-Nd@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Ignore nullingrels when looking up statistics

When looking up statistical data about an expression, we do not need
to concern ourselves with the outer joins that could null the
Vars/PHVs contained in the expression.  Accounting for nullingrels in
the expression could cause estimate_num_groups to count the same Var
multiple times if it's marked with different nullingrels.  This is
incorrect, and could lead to "ERROR:  corrupt MVNDistinct entry" when
searching for multivariate n-distinct.

Furthermore, the nullingrels could prevent us from matching an
expression to expressional index columns or to the expressions in
extended statistics, leading to inaccurate estimates.

To fix, strip out all the nullingrels from the expression before we
look up statistical data about it.  There is one ensuing plan change
in the regression tests, but it looks reasonable and does not
compromise its original purpose.

This patch could result in plan changes, but it fixes an actual bug,
so back-patch to v16 where the outer-join-aware-Var infrastructure was
introduced.

Author: Richard Guo
Discussion: https://postgr.es/m/CAMbWs4-2Z4k+nFTiZe0Qbu5n8juUWenDAtMzi98bAZQtwHx0-w@mail.gmail.com

Branch
------
REL_16_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/a1a9120c797d689be1dafd6fac8d956e3f667ba6

Modified Files
--------------
src/backend/utils/adt/selfuncs.c   | 28 +++++++++++++++++++++++++---
src/test/regress/expected/join.out | 26 ++++++++++++++++++++++++--
src/test/regress/sql/join.sql      | 13 +++++++++++++
3 files changed, 62 insertions(+), 5 deletions(-)


pgsql-committers by date:

Previous
From: Richard Guo
Date:
Subject: pgsql: Ignore nullingrels when looking up statistics
Next
From: Andrew Dunstan
Date:
Subject: pgsql: Document strange jsonb sort order for empty top level arrays