]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Improve test coverage for multi-column MCV lists
authorTomas Vondra <tomas.vondra@postgresql.org>
Sat, 14 Mar 2020 22:04:56 +0000 (23:04 +0100)
committerTomas Vondra <tomas.vondra@postgresql.org>
Sat, 14 Mar 2020 22:09:40 +0000 (23:09 +0100)
commitd8cfa82d51f812f886d06bdc7bb73470e55d74b7
treeacc2f87b5ee9f7935693eaff31fef8aa2df1efc7
parentf9696782c70168e575c0f2d17a1cfe71847fef3d
Improve test coverage for multi-column MCV lists

The regression tests for extended statistics were not testing a couple
of important cases for the MCV lists:

  * IS NOT NULL clauses - We did have queries with IS NULL clauses, but
    not the negative case.

  * clauses with variable on the right - All the clauses had the Var on
    the left, i.e. (Var op Const), so this adds (Const op Var) too.

  * columns with fixed-length types passed by reference - All columns
    were using either by-value or varlena types, so add a test with
    UUID columns too. This matters for (de)serialization.

  * NULL-only dimension - When one of the columns contains only NULL
    values, we treat it a a special case during (de)serialization.

  * arrays containing NULL - When the constant parameter contains NULL
    value, we need to handle it correctly during estimation, for all
    IN, ANY and ALL clauses.

Discussion: https://www.postgresql.org/message-id/flat/20200113230008.g67iyk4cs3xbnjju@development
Author: Tomas Vondra
src/test/regress/expected/stats_ext.out
src/test/regress/sql/stats_ext.sql