stats_ext.out 110 KB
Newer Older
1
-- Generic extended statistics support
2 3 4 5 6
--
-- Note: tables for which we check estimated row counts should be created
-- with autovacuum_enabled = off, so that we don't have unstable results
-- from auto-analyze happening when we didn't expect it.
--
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
-- check the number of estimated/actual rows in the top node
create function check_estimated_rows(text) returns table (estimated int, actual int)
language plpgsql as
$$
declare
    ln text;
    tmp text[];
    first_row bool := true;
begin
    for ln in
        execute format('explain analyze %s', $1)
    loop
        if first_row then
            first_row := false;
            tmp := regexp_match(ln, 'rows=(\d*) .* rows=(\d*)');
            return query select tmp[1]::int, tmp[2]::int;
        end if;
    end loop;
end;
$$;
27
-- Verify failures
28
CREATE TABLE ext_stats_test (x text, y int, z int);
29 30 31 32 33 34 35 36 37 38 39 40
CREATE STATISTICS tst;
ERROR:  syntax error at or near ";"
LINE 1: CREATE STATISTICS tst;
                             ^
CREATE STATISTICS tst ON a, b;
ERROR:  syntax error at or near ";"
LINE 1: CREATE STATISTICS tst ON a, b;
                                     ^
CREATE STATISTICS tst FROM sometab;
ERROR:  syntax error at or near "FROM"
LINE 1: CREATE STATISTICS tst FROM sometab;
                              ^
41 42
CREATE STATISTICS tst ON a, b FROM nonexistent;
ERROR:  relation "nonexistent" does not exist
43
CREATE STATISTICS tst ON a, b FROM ext_stats_test;
Peter Eisentraut's avatar
Peter Eisentraut committed
44
ERROR:  column "a" does not exist
45
CREATE STATISTICS tst ON x, x, y FROM ext_stats_test;
46
ERROR:  duplicate column name in statistics definition
47 48 49 50 51 52 53 54
CREATE STATISTICS tst ON x, x, y, x, x, y, x, x, y FROM ext_stats_test;
ERROR:  cannot have more than 8 columns in statistics
CREATE STATISTICS tst ON x, x, y, x, x, (x || 'x'), (y + 1), (x || 'x'), (x || 'x'), (y + 1) FROM ext_stats_test;
ERROR:  cannot have more than 8 columns in statistics
CREATE STATISTICS tst ON (x || 'x'), (x || 'x'), (y + 1), (x || 'x'), (x || 'x'), (y + 1), (x || 'x'), (x || 'x'), (y + 1) FROM ext_stats_test;
ERROR:  cannot have more than 8 columns in statistics
CREATE STATISTICS tst ON (x || 'x'), (x || 'x'), y FROM ext_stats_test;
ERROR:  duplicate expression in statistics definition
55
CREATE STATISTICS tst (unrecognized) ON x, y FROM ext_stats_test;
Peter Eisentraut's avatar
Peter Eisentraut committed
56
ERROR:  unrecognized statistics kind "unrecognized"
57 58 59 60 61 62 63 64 65
-- incorrect expressions
CREATE STATISTICS tst ON y + z FROM ext_stats_test; -- missing parentheses
ERROR:  syntax error at or near "+"
LINE 1: CREATE STATISTICS tst ON y + z FROM ext_stats_test;
                                   ^
CREATE STATISTICS tst ON (x, y) FROM ext_stats_test; -- tuple expression
ERROR:  syntax error at or near ","
LINE 1: CREATE STATISTICS tst ON (x, y) FROM ext_stats_test;
                                   ^
66
DROP TABLE ext_stats_test;
67
-- Ensure stats are dropped sanely, and test IF NOT EXISTS while at it
68
CREATE TABLE ab1 (a INTEGER, b INTEGER, c INTEGER);
69 70 71
CREATE STATISTICS IF NOT EXISTS ab1_a_b_stats ON a, b FROM ab1;
CREATE STATISTICS IF NOT EXISTS ab1_a_b_stats ON a, b FROM ab1;
NOTICE:  statistics object "ab1_a_b_stats" already exists, skipping
72 73
DROP STATISTICS ab1_a_b_stats;
CREATE SCHEMA regress_schema_2;
74
CREATE STATISTICS regress_schema_2.ab1_a_b_stats ON a, b FROM ab1;
75 76 77
-- Let's also verify the pg_get_statisticsobjdef output looks sane.
SELECT pg_get_statisticsobjdef(oid) FROM pg_statistic_ext WHERE stxname = 'ab1_a_b_stats';
                      pg_get_statisticsobjdef                      
78 79
-------------------------------------------------------------------
 CREATE STATISTICS regress_schema_2.ab1_a_b_stats ON a, b FROM ab1
80 81
(1 row)

82 83
DROP STATISTICS regress_schema_2.ab1_a_b_stats;
-- Ensure statistics are dropped when columns are
84 85
CREATE STATISTICS ab1_b_c_stats ON b, c FROM ab1;
CREATE STATISTICS ab1_a_b_c_stats ON a, b, c FROM ab1;
86
CREATE STATISTICS ab1_b_a_stats ON b, a FROM ab1;
87 88 89 90 91 92 93
ALTER TABLE ab1 DROP COLUMN a;
\d ab1
                Table "public.ab1"
 Column |  Type   | Collation | Nullable | Default 
--------+---------+-----------+----------+---------
 b      | integer |           |          | 
 c      | integer |           |          | 
94
Statistics objects:
95
    "public"."ab1_b_c_stats" ON b, c FROM ab1
96

97 98 99 100 101 102 103
-- Ensure statistics are dropped when table is
SELECT stxname FROM pg_statistic_ext WHERE stxname LIKE 'ab1%';
    stxname    
---------------
 ab1_b_c_stats
(1 row)

104
DROP TABLE ab1;
105 106 107 108 109
SELECT stxname FROM pg_statistic_ext WHERE stxname LIKE 'ab1%';
 stxname 
---------
(0 rows)

110 111 112 113
-- Ensure things work sanely with SET STATISTICS 0
CREATE TABLE ab1 (a INTEGER, b INTEGER);
ALTER TABLE ab1 ALTER a SET STATISTICS 0;
INSERT INTO ab1 SELECT a, a%23 FROM generate_series(1, 1000) a;
114
CREATE STATISTICS ab1_a_b_stats ON a, b FROM ab1;
115
ANALYZE ab1;
116
WARNING:  statistics object "public.ab1_a_b_stats" could not be computed for relation "public.ab1"
117
ALTER TABLE ab1 ALTER a SET STATISTICS -1;
118 119
-- setting statistics target 0 skips the statistics, without printing any message, so check catalog
ALTER STATISTICS ab1_a_b_stats SET STATISTICS 0;
120 121 122 123 124 125 126
\d ab1
                Table "public.ab1"
 Column |  Type   | Collation | Nullable | Default 
--------+---------+-----------+----------+---------
 a      | integer |           |          | 
 b      | integer |           |          | 
Statistics objects:
127
    "public"."ab1_a_b_stats" ON a, b FROM ab1; STATISTICS 0
128

129 130 131 132 133 134 135 136 137 138 139
ANALYZE ab1;
SELECT stxname, stxdndistinct, stxddependencies, stxdmcv
  FROM pg_statistic_ext s, pg_statistic_ext_data d
 WHERE s.stxname = 'ab1_a_b_stats'
   AND d.stxoid = s.oid;
    stxname    | stxdndistinct | stxddependencies | stxdmcv 
---------------+---------------+------------------+---------
 ab1_a_b_stats |               |                  | 
(1 row)

ALTER STATISTICS ab1_a_b_stats SET STATISTICS -1;
140 141 142 143 144 145 146
\d+ ab1
                                    Table "public.ab1"
 Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description 
--------+---------+-----------+----------+---------+---------+--------------+-------------
 a      | integer |           |          |         | plain   |              | 
 b      | integer |           |          |         | plain   |              | 
Statistics objects:
147
    "public"."ab1_a_b_stats" ON a, b FROM ab1
148

149 150
-- partial analyze doesn't build stats either
ANALYZE ab1 (a);
151
WARNING:  statistics object "public.ab1_a_b_stats" could not be computed for relation "public.ab1"
152 153
ANALYZE ab1;
DROP TABLE ab1;
154 155 156 157
ALTER STATISTICS ab1_a_b_stats SET STATISTICS 0;
ERROR:  statistics object "ab1_a_b_stats" does not exist
ALTER STATISTICS IF EXISTS ab1_a_b_stats SET STATISTICS 0;
NOTICE:  statistics object "ab1_a_b_stats" does not exist, skipping
158 159 160 161 162 163 164 165
-- Ensure we can build statistics for tables with inheritance.
CREATE TABLE ab1 (a INTEGER, b INTEGER);
CREATE TABLE ab1c () INHERITS (ab1);
INSERT INTO ab1 VALUES (1,1);
CREATE STATISTICS ab1_a_b_stats ON a, b FROM ab1;
ANALYZE ab1;
DROP TABLE ab1 CASCADE;
NOTICE:  drop cascades to table ab1c
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
-- basic test for statistics on expressions
CREATE TABLE ab1 (a INTEGER, b INTEGER, c TIMESTAMP, d TIMESTAMPTZ);
-- expression stats may be built on a single expression column
CREATE STATISTICS ab1_exprstat_1 ON (a+b) FROM ab1;
-- with a single expression, we only enable expression statistics
CREATE STATISTICS ab1_exprstat_2 ON (a+b) FROM ab1;
SELECT stxkind FROM pg_statistic_ext WHERE stxname = 'ab1_exprstat_2';
 stxkind 
---------
 {e}
(1 row)

-- adding anything to the expression builds all statistics kinds
CREATE STATISTICS ab1_exprstat_3 ON (a+b), a FROM ab1;
SELECT stxkind FROM pg_statistic_ext WHERE stxname = 'ab1_exprstat_3';
  stxkind  
-----------
 {d,f,m,e}
(1 row)

-- date_trunc on timestamptz is not immutable, but that should not matter
CREATE STATISTICS ab1_exprstat_4 ON date_trunc('day', d) FROM ab1;
-- date_trunc on timestamp is immutable
CREATE STATISTICS ab1_exprstat_5 ON date_trunc('day', c) FROM ab1;
-- insert some data and run analyze, to test that these cases build properly
INSERT INTO ab1
SELECT
    generate_series(1,10),
    generate_series(1,10),
    generate_series('2020-10-01'::timestamp, '2020-10-10'::timestamp, interval '1 day'),
    generate_series('2020-10-01'::timestamptz, '2020-10-10'::timestamptz, interval '1 day');
ANALYZE ab1;
DROP TABLE ab1;
199 200 201 202 203 204 205 206 207 208 209 210 211
-- Verify supported object types for extended statistics
CREATE schema tststats;
CREATE TABLE tststats.t (a int, b int, c text);
CREATE INDEX ti ON tststats.t (a, b);
CREATE SEQUENCE tststats.s;
CREATE VIEW tststats.v AS SELECT * FROM tststats.t;
CREATE MATERIALIZED VIEW tststats.mv AS SELECT * FROM tststats.t;
CREATE TYPE tststats.ty AS (a int, b int, c text);
CREATE FOREIGN DATA WRAPPER extstats_dummy_fdw;
CREATE SERVER extstats_dummy_srv FOREIGN DATA WRAPPER extstats_dummy_fdw;
CREATE FOREIGN TABLE tststats.f (a int, b int, c text) SERVER extstats_dummy_srv;
CREATE TABLE tststats.pt (a int, b int, c text) PARTITION BY RANGE (a, b);
CREATE TABLE tststats.pt1 PARTITION OF tststats.pt FOR VALUES FROM (-10, -10) TO (10, 10);
212 213
CREATE STATISTICS tststats.s1 ON a, b FROM tststats.t;
CREATE STATISTICS tststats.s2 ON a, b FROM tststats.ti;
214
ERROR:  relation "ti" is not a table, foreign table, or materialized view
215
CREATE STATISTICS tststats.s3 ON a, b FROM tststats.s;
216
ERROR:  relation "s" is not a table, foreign table, or materialized view
217
CREATE STATISTICS tststats.s4 ON a, b FROM tststats.v;
218
ERROR:  relation "v" is not a table, foreign table, or materialized view
219 220
CREATE STATISTICS tststats.s5 ON a, b FROM tststats.mv;
CREATE STATISTICS tststats.s6 ON a, b FROM tststats.ty;
221
ERROR:  relation "ty" is not a table, foreign table, or materialized view
222 223 224
CREATE STATISTICS tststats.s7 ON a, b FROM tststats.f;
CREATE STATISTICS tststats.s8 ON a, b FROM tststats.pt;
CREATE STATISTICS tststats.s9 ON a, b FROM tststats.pt1;
225 226 227 228
DO $$
DECLARE
	relname text := reltoastrelid::regclass FROM pg_class WHERE oid = 'tststats.t'::regclass;
BEGIN
229
	EXECUTE 'CREATE STATISTICS tststats.s10 ON a, b FROM ' || relname;
230 231 232 233 234 235
EXCEPTION WHEN wrong_object_type THEN
	RAISE NOTICE 'stats on toast table not created';
END;
$$;
NOTICE:  stats on toast table not created
DROP SCHEMA tststats CASCADE;
236
NOTICE:  drop cascades to 7 other objects
237 238 239 240 241 242 243
DETAIL:  drop cascades to table tststats.t
drop cascades to sequence tststats.s
drop cascades to view tststats.v
drop cascades to materialized view tststats.mv
drop cascades to type tststats.ty
drop cascades to foreign table tststats.f
drop cascades to table tststats.pt
244
DROP FOREIGN DATA WRAPPER extstats_dummy_fdw CASCADE;
245
NOTICE:  drop cascades to server extstats_dummy_srv
246 247 248 249 250 251 252 253 254
-- n-distinct tests
CREATE TABLE ndistinct (
    filler1 TEXT,
    filler2 NUMERIC,
    a INT,
    b INT,
    filler3 DATE,
    c INT,
    d INT
255 256
)
WITH (autovacuum_enabled = off);
Alvaro Herrera's avatar
Alvaro Herrera committed
257 258 259
-- over-estimates when using only per-column statistics
INSERT INTO ndistinct (a, b, c, filler1)
     SELECT i/100, i/100, i/100, cash_words((i/100)::money)
260
       FROM generate_series(1,1000) s(i);
Alvaro Herrera's avatar
Alvaro Herrera committed
261 262
ANALYZE ndistinct;
-- Group Aggregate, due to over-estimate of the number of groups
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
 estimated | actual 
-----------+--------
       100 |     11
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY b, c');
 estimated | actual 
-----------+--------
       100 |     11
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, c');
 estimated | actual 
-----------+--------
       100 |     11
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, c, d');
 estimated | actual 
-----------+--------
       200 |     11
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY b, c, d');
 estimated | actual 
-----------+--------
       200 |     11
(1 row)
Alvaro Herrera's avatar
Alvaro Herrera committed
292

293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, (a+1)');
 estimated | actual 
-----------+--------
       100 |     11
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a+1), (b+100)');
 estimated | actual 
-----------+--------
       100 |     11
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a+1), (b+100), (2*c)');
 estimated | actual 
-----------+--------
       100 |     11
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (a+1), (b+100)');
 estimated | actual 
-----------+--------
       100 |     11
(1 row)

317
-- correct command
318
CREATE STATISTICS s10 ON a, b, c FROM ndistinct;
319
ANALYZE ndistinct;
320 321 322 323 324
SELECT s.stxkind, d.stxdndistinct
  FROM pg_statistic_ext s, pg_statistic_ext_data d
 WHERE s.stxrelid = 'ndistinct'::regclass
   AND d.stxoid = s.oid;
 stxkind |                    stxdndistinct                    
325 326
---------+-----------------------------------------------------
 {d,f,m} | {"3, 4": 11, "3, 6": 11, "4, 6": 11, "3, 4, 6": 11}
327 328
(1 row)

329 330 331 332
-- minor improvement, make sure the ctid does not break the matching
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY ctid, a, b');
 estimated | actual 
-----------+--------
333
      1000 |   1000
334 335
(1 row)

Alvaro Herrera's avatar
Alvaro Herrera committed
336
-- Hash Aggregate, thanks to estimates improved by the statistic
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
 estimated | actual 
-----------+--------
        11 |     11
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY b, c');
 estimated | actual 
-----------+--------
        11 |     11
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, c');
 estimated | actual 
-----------+--------
        11 |     11
(1 row)
354

355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
-- partial improvement (match on attributes)
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, (a+1)');
 estimated | actual 
-----------+--------
        11 |     11
(1 row)

-- expressions - no improvement
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a+1), (b+100)');
 estimated | actual 
-----------+--------
        11 |     11
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a+1), (b+100), (2*c)');
 estimated | actual 
-----------+--------
        11 |     11
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (a+1), (b+100)');
 estimated | actual 
-----------+--------
        11 |     11
(1 row)

Alvaro Herrera's avatar
Alvaro Herrera committed
381 382
-- last two plans keep using Group Aggregate, because 'd' is not covered
-- by the statistic and while it's NULL-only we assume 200 values for it
383 384 385 386 387 388 389 390 391 392 393
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, c, d');
 estimated | actual 
-----------+--------
       200 |     11
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY b, c, d');
 estimated | actual 
-----------+--------
       200 |     11
(1 row)
Alvaro Herrera's avatar
Alvaro Herrera committed
394

395
TRUNCATE TABLE ndistinct;
Alvaro Herrera's avatar
Alvaro Herrera committed
396 397
-- under-estimates when using only per-column statistics
INSERT INTO ndistinct (a, b, c, filler1)
398 399 400
     SELECT mod(i,13), mod(i,17), mod(i,19),
            cash_words(mod(i,23)::int::money)
       FROM generate_series(1,1000) s(i);
401
ANALYZE ndistinct;
402 403 404 405
SELECT s.stxkind, d.stxdndistinct
  FROM pg_statistic_ext s, pg_statistic_ext_data d
 WHERE s.stxrelid = 'ndistinct'::regclass
   AND d.stxoid = s.oid;
406 407 408
 stxkind |                      stxdndistinct                       
---------+----------------------------------------------------------
 {d,f,m} | {"3, 4": 221, "3, 6": 247, "4, 6": 323, "3, 4, 6": 1000}
409 410
(1 row)

411
-- correct estimates
412 413 414
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
 estimated | actual 
-----------+--------
415
       221 |    221
416 417 418 419 420
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, c');
 estimated | actual 
-----------+--------
421
      1000 |   1000
422 423 424 425 426
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, c, d');
 estimated | actual 
-----------+--------
427
      1000 |   1000
428 429 430 431 432
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY b, c, d');
 estimated | actual 
-----------+--------
433
       323 |    323
434 435 436 437 438
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, d');
 estimated | actual 
-----------+--------
439
       200 |     13
440
(1 row)
Alvaro Herrera's avatar
Alvaro Herrera committed
441

442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, (a+1)');
 estimated | actual 
-----------+--------
       221 |    221
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a+1), (b+100)');
 estimated | actual 
-----------+--------
       221 |    221
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a+1), (b+100), (2*c)');
 estimated | actual 
-----------+--------
      1000 |   1000
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (a+1), (b+100)');
 estimated | actual 
-----------+--------
       221 |    221
(1 row)

Alvaro Herrera's avatar
Alvaro Herrera committed
466
DROP STATISTICS s10;
467 468 469 470 471 472
SELECT s.stxkind, d.stxdndistinct
  FROM pg_statistic_ext s, pg_statistic_ext_data d
 WHERE s.stxrelid = 'ndistinct'::regclass
   AND d.stxoid = s.oid;
 stxkind | stxdndistinct 
---------+---------------
Alvaro Herrera's avatar
Alvaro Herrera committed
473 474
(0 rows)

475 476 477 478
-- dropping the statistics results in under-estimates
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
 estimated | actual 
-----------+--------
479
       100 |    221
480 481 482 483 484
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, c');
 estimated | actual 
-----------+--------
485
       100 |   1000
486 487 488 489 490
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, c, d');
 estimated | actual 
-----------+--------
491
       200 |   1000
492 493 494 495 496
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY b, c, d');
 estimated | actual 
-----------+--------
497
       200 |    323
498 499 500 501 502
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, d');
 estimated | actual 
-----------+--------
503
       200 |     13
504
(1 row)
505

506
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, (a+1)');
507 508
 estimated | actual 
-----------+--------
509
       100 |    221
510 511
(1 row)

512
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a+1), (b+100)');
513 514
 estimated | actual 
-----------+--------
515
       100 |    221
516
(1 row)
517

518
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a+1), (b+100), (2*c)');
519 520
 estimated | actual 
-----------+--------
521
       100 |   1000
522 523
(1 row)

524
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (a+1), (b+100)');
525 526
 estimated | actual 
-----------+--------
527
       100 |    221
528
(1 row)
529

530 531
-- ndistinct estimates with statistics on expressions
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a+1), (b+100)');
532 533
 estimated | actual 
-----------+--------
534
       100 |    221
535 536
(1 row)

537
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a+1), (b+100), (2*c)');
538 539
 estimated | actual 
-----------+--------
540
       100 |   1000
541
(1 row)
542

543
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (a+1), (b+100)');
544 545
 estimated | actual 
-----------+--------
546
       100 |    221
547 548
(1 row)

549 550 551 552 553 554 555 556 557 558 559 560
CREATE STATISTICS s10 (ndistinct) ON (a+1), (b+100), (2*c) FROM ndistinct;
ANALYZE ndistinct;
SELECT s.stxkind, d.stxdndistinct
  FROM pg_statistic_ext s, pg_statistic_ext_data d
 WHERE s.stxrelid = 'ndistinct'::regclass
   AND d.stxoid = s.oid;
 stxkind |                           stxdndistinct                           
---------+-------------------------------------------------------------------
 {d,e}   | {"-1, -2": 221, "-1, -3": 247, "-2, -3": 323, "-1, -2, -3": 1000}
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a+1), (b+100)');
561 562
 estimated | actual 
-----------+--------
563
       221 |    221
564 565
(1 row)

566
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a+1), (b+100), (2*c)');
567 568
 estimated | actual 
-----------+--------
569
      1000 |   1000
570 571
(1 row)

572
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (a+1), (b+100)');
573 574
 estimated | actual 
-----------+--------
575
       221 |    221
576 577
(1 row)

578 579 580
DROP STATISTICS s10;
-- a mix of attributes and expressions
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
581 582
 estimated | actual 
-----------+--------
583
       100 |    221
584 585
(1 row)

586
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (2*c)');
587 588
 estimated | actual 
-----------+--------
589
       100 |    247
590 591
(1 row)

592
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, (2*c)');
593 594
 estimated | actual 
-----------+--------
595
       100 |   1000
596 597
(1 row)

598 599 600 601 602 603 604 605 606 607 608 609
CREATE STATISTICS s10 (ndistinct) ON a, b, (2*c) FROM ndistinct;
ANALYZE ndistinct;
SELECT s.stxkind, d.stxdndistinct
  FROM pg_statistic_ext s, pg_statistic_ext_data d
 WHERE s.stxrelid = 'ndistinct'::regclass
   AND d.stxoid = s.oid;
 stxkind |                        stxdndistinct                        
---------+-------------------------------------------------------------
 {d,e}   | {"3, 4": 221, "3, -1": 247, "4, -1": 323, "3, 4, -1": 1000}
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
610 611
 estimated | actual 
-----------+--------
612
       221 |    221
613 614
(1 row)

615
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (2*c)');
616 617
 estimated | actual 
-----------+--------
618
       247 |    247
619 620
(1 row)

621
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, (2*c)');
622 623
 estimated | actual 
-----------+--------
624
      1000 |   1000
625 626
(1 row)

627 628 629 630 631 632 633 634 635
DROP STATISTICS s10;
-- combination of multiple ndistinct statistics, with/without expressions
TRUNCATE ndistinct;
-- two mostly independent groups of columns
INSERT INTO ndistinct (a, b, c, d)
     SELECT mod(i,3), mod(i,9), mod(i,5), mod(i,20)
       FROM generate_series(1,1000) s(i);
ANALYZE ndistinct;
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
636 637
 estimated | actual 
-----------+--------
638
        27 |      9
639 640
(1 row)

641
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (b+1)');
642 643
 estimated | actual 
-----------+--------
644
        27 |      9
645 646
(1 row)

647
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), b');
648 649
 estimated | actual 
-----------+--------
650
        27 |      9
651 652
(1 row)

653
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), (b+1)');
654 655
 estimated | actual 
-----------+--------
656
        27 |      9
657 658
(1 row)

659
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), (b+1), c');
660 661
 estimated | actual 
-----------+--------
662
       100 |     45
663 664
(1 row)

665
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, (c*10)');
666 667
 estimated | actual 
-----------+--------
668
       100 |     45
669 670
(1 row)

671
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (b+1), c, (d - 1)');
672 673
 estimated | actual 
-----------+--------
674
       100 |    180
675 676
(1 row)

677 678 679 680 681
-- basic statistics on both attributes (no expressions)
CREATE STATISTICS s11 (ndistinct) ON a, b FROM ndistinct;
CREATE STATISTICS s12 (ndistinct) ON c, d FROM ndistinct;
ANALYZE ndistinct;
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
682 683
 estimated | actual 
-----------+--------
684
         9 |      9
685 686
(1 row)

687
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (b+1)');
688 689
 estimated | actual 
-----------+--------
690
         9 |      9
691 692
(1 row)

693
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), b');
694 695
 estimated | actual 
-----------+--------
696
         9 |      9
697 698
(1 row)

699
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), (b+1)');
700 701
 estimated | actual 
-----------+--------
702
         9 |      9
703 704
(1 row)

705
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), (b+1), c');
706 707
 estimated | actual 
-----------+--------
708
        45 |     45
709 710
(1 row)

711
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, (c*10)');
712 713
 estimated | actual 
-----------+--------
714
        45 |     45
715 716
(1 row)

717 718 719 720
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (b+1), c, (d - 1)');
 estimated | actual 
-----------+--------
       100 |    180
721 722
(1 row)

723 724 725 726 727
-- replace the second statistics by statistics on expressions
DROP STATISTICS s12;
CREATE STATISTICS s12 (ndistinct) ON (c * 10), (d - 1) FROM ndistinct;
ANALYZE ndistinct;
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
728 729
 estimated | actual 
-----------+--------
730
         9 |      9
731 732
(1 row)

733
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (b+1)');
734 735
 estimated | actual 
-----------+--------
736
         9 |      9
737
(1 row)
738

739
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), b');
740 741
 estimated | actual 
-----------+--------
742
         9 |      9
743 744
(1 row)

745
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), (b+1)');
746 747
 estimated | actual 
-----------+--------
748
         9 |      9
749 750
(1 row)

751
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), (b+1), c');
752 753
 estimated | actual 
-----------+--------
754
        45 |     45
755 756
(1 row)

757
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, (c*10)');
758 759
 estimated | actual 
-----------+--------
760
        45 |     45
761 762
(1 row)

763
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (b+1), c, (d - 1)');
764 765
 estimated | actual 
-----------+--------
766
       100 |    180
767 768
(1 row)

769 770 771 772 773
-- replace the second statistics by statistics on both attributes and expressions
DROP STATISTICS s12;
CREATE STATISTICS s12 (ndistinct) ON c, d, (c * 10), (d - 1) FROM ndistinct;
ANALYZE ndistinct;
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
774 775
 estimated | actual 
-----------+--------
776
         9 |      9
777 778
(1 row)

779
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (b+1)');
780 781
 estimated | actual 
-----------+--------
782
         9 |      9
783 784
(1 row)

785
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), b');
786 787
 estimated | actual 
-----------+--------
788
         9 |      9
789 790
(1 row)

791
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), (b+1)');
792 793
 estimated | actual 
-----------+--------
794
         9 |      9
795 796
(1 row)

797
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), (b+1), c');
798 799
 estimated | actual 
-----------+--------
800
        45 |     45
801 802
(1 row)

803
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, (c*10)');
804 805
 estimated | actual 
-----------+--------
806
        45 |     45
807 808
(1 row)

809
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (b+1), c, (d - 1)');
810 811
 estimated | actual 
-----------+--------
812
       100 |    180
813 814
(1 row)

815 816 817 818 819
-- replace the other statistics by statistics on both attributes and expressions
DROP STATISTICS s11;
CREATE STATISTICS s11 (ndistinct) ON a, b, (a*5), (b+1) FROM ndistinct;
ANALYZE ndistinct;
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
820 821
 estimated | actual 
-----------+--------
822
         9 |      9
823 824
(1 row)

825
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (b+1)');
826 827
 estimated | actual 
-----------+--------
828
         9 |      9
829 830
(1 row)

831
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), b');
832 833
 estimated | actual 
-----------+--------
834
         9 |      9
835 836
(1 row)

837
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), (b+1)');
838 839
 estimated | actual 
-----------+--------
840
         9 |      9
841 842
(1 row)

843
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), (b+1), c');
844 845
 estimated | actual 
-----------+--------
846
        45 |     45
847 848
(1 row)

849
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, (c*10)');
850 851
 estimated | actual 
-----------+--------
852
        45 |     45
853 854
(1 row)

855
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (b+1), c, (d - 1)');
856 857
 estimated | actual 
-----------+--------
858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
       100 |    180
(1 row)

-- replace statistics by somewhat overlapping ones (this expected to get worse estimate
-- because the first statistics shall be applied to 3 columns, and the second one can't
-- be really applied)
DROP STATISTICS s11;
DROP STATISTICS s12;
CREATE STATISTICS s11 (ndistinct) ON a, b, (a*5), (b+1) FROM ndistinct;
CREATE STATISTICS s12 (ndistinct) ON a, (b+1), (c * 10) FROM ndistinct;
ANALYZE ndistinct;
SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b');
 estimated | actual 
-----------+--------
         9 |      9
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (b+1)');
 estimated | actual 
-----------+--------
         9 |      9
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), b');
 estimated | actual 
-----------+--------
         9 |      9
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), (b+1)');
 estimated | actual 
-----------+--------
         9 |      9
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY (a*5), (b+1), c');
 estimated | actual 
-----------+--------
        45 |     45
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, b, (c*10)');
 estimated | actual 
-----------+--------
       100 |     45
(1 row)

SELECT * FROM check_estimated_rows('SELECT COUNT(*) FROM ndistinct GROUP BY a, (b+1), c, (d - 1)');
 estimated | actual 
-----------+--------
       100 |    180
(1 row)

DROP STATISTICS s11;
DROP STATISTICS s12;
-- functional dependencies tests
CREATE TABLE functional_dependencies (
    filler1 TEXT,
    filler2 NUMERIC,
    a INT,
    b TEXT,
    filler3 DATE,
    c INT,
    d TEXT
)
WITH (autovacuum_enabled = off);
CREATE INDEX fdeps_ab_idx ON functional_dependencies (a, b);
CREATE INDEX fdeps_abc_idx ON functional_dependencies (a, b, c);
-- random data (no functional dependencies)
INSERT INTO functional_dependencies (a, b, c, filler1)
     SELECT mod(i, 5), mod(i, 7), mod(i, 11), i FROM generate_series(1,1000) s(i);
ANALYZE functional_dependencies;
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = 1 AND b = ''1''');
 estimated | actual 
-----------+--------
        29 |     29
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = 1 AND b = ''1'' AND c = 1');
 estimated | actual 
-----------+--------
         3 |      3
(1 row)

-- create statistics
CREATE STATISTICS func_deps_stat (dependencies) ON a, b, c FROM functional_dependencies;
ANALYZE functional_dependencies;
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = 1 AND b = ''1''');
 estimated | actual 
-----------+--------
        29 |     29
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = 1 AND b = ''1'' AND c = 1');
 estimated | actual 
-----------+--------
         3 |      3
(1 row)

-- a => b, a => c, b => c
TRUNCATE functional_dependencies;
DROP STATISTICS func_deps_stat;
-- now do the same thing, but with expressions
INSERT INTO functional_dependencies (a, b, c, filler1)
     SELECT i, i, i, i FROM generate_series(1,5000) s(i);
ANALYZE functional_dependencies;
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE mod(a, 11) = 1 AND mod(b::int, 13) = 1');
 estimated | actual 
-----------+--------
         1 |     35
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE mod(a, 11) = 1 AND mod(b::int, 13) = 1 AND mod(c, 7) = 1');
 estimated | actual 
-----------+--------
         1 |      5
(1 row)

-- create statistics
CREATE STATISTICS func_deps_stat (dependencies) ON (mod(a,11)), (mod(b::int, 13)), (mod(c, 7)) FROM functional_dependencies;
ANALYZE functional_dependencies;
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE mod(a, 11) = 1 AND mod(b::int, 13) = 1');
 estimated | actual 
-----------+--------
        35 |     35
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE mod(a, 11) = 1 AND mod(b::int, 13) = 1 AND mod(c, 7) = 1');
 estimated | actual 
-----------+--------
         5 |      5
(1 row)

-- a => b, a => c, b => c
TRUNCATE functional_dependencies;
DROP STATISTICS func_deps_stat;
INSERT INTO functional_dependencies (a, b, c, filler1)
     SELECT mod(i,100), mod(i,50), mod(i,25), i FROM generate_series(1,5000) s(i);
ANALYZE functional_dependencies;
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = 1 AND b = ''1''');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = 1 AND b = ''1'' AND c = 1');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

-- IN
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 51) AND b = ''1''');
 estimated | actual 
-----------+--------
         2 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 51) AND b IN (''1'', ''2'')');
 estimated | actual 
-----------+--------
         4 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 2, 51, 52) AND b IN (''1'', ''2'')');
 estimated | actual 
-----------+--------
         8 |    200
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 2, 51, 52) AND b = ''1''');
 estimated | actual 
-----------+--------
         4 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 26, 51, 76) AND b IN (''1'', ''26'') AND c = 1');
 estimated | actual 
-----------+--------
         1 |    200
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 26, 51, 76) AND b IN (''1'', ''26'') AND c IN (1)');
 estimated | actual 
-----------+--------
         1 |    200
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 2, 26, 27, 51, 52, 76, 77) AND b IN (''1'', ''2'', ''26'', ''27'') AND c IN (1, 2)');
 estimated | actual 
-----------+--------
         3 |    400
(1 row)

-- OR clauses referencing the same attribute
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a = 1 OR a = 51) AND b = ''1''');
 estimated | actual 
-----------+--------
         2 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a = 1 OR a = 51) AND (b = ''1'' OR b = ''2'')');
 estimated | actual 
-----------+--------
         4 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a = 1 OR a = 2 OR a = 51 OR a = 52) AND (b = ''1'' OR b = ''2'')');
 estimated | actual 
-----------+--------
         8 |    200
(1 row)

-- OR clauses referencing different attributes
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a = 1 OR b = ''1'') AND b = ''1''');
 estimated | actual 
-----------+--------
         3 |    100
(1 row)

-- ANY
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = ANY (ARRAY[1, 51]) AND b = ''1''');
 estimated | actual 
-----------+--------
         2 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = ANY (ARRAY[1, 51]) AND b = ANY (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
         4 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = ANY (ARRAY[1, 2, 51, 52]) AND b = ANY (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
         8 |    200
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = ANY (ARRAY[1, 26, 51, 76]) AND b = ANY (ARRAY[''1'', ''26'']) AND c = 1');
 estimated | actual 
-----------+--------
         1 |    200
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = ANY (ARRAY[1, 26, 51, 76]) AND b = ANY (ARRAY[''1'', ''26'']) AND c = ANY (ARRAY[1])');
 estimated | actual 
-----------+--------
         1 |    200
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = ANY (ARRAY[1, 2, 26, 27, 51, 52, 76, 77]) AND b = ANY (ARRAY[''1'', ''2'', ''26'', ''27'']) AND c = ANY (ARRAY[1, 2])');
 estimated | actual 
-----------+--------
         3 |    400
(1 row)

-- ANY with inequalities should not benefit from functional dependencies
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a < ANY (ARRAY[1, 51]) AND b > ''1''');
 estimated | actual 
-----------+--------
      2472 |   2400
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a >= ANY (ARRAY[1, 51]) AND b <= ANY (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
      1441 |   1250
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a <= ANY (ARRAY[1, 2, 51, 52]) AND b >= ANY (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
      3909 |   2550
(1 row)

-- ALL (should not benefit from functional dependencies)
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 51) AND b = ALL (ARRAY[''1''])');
 estimated | actual 
-----------+--------
         2 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 51) AND b = ALL (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 2, 51, 52) AND b = ALL (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

-- create statistics
CREATE STATISTICS func_deps_stat (dependencies) ON a, b, c FROM functional_dependencies;
ANALYZE functional_dependencies;
-- print the detected dependencies
SELECT dependencies FROM pg_stats_ext WHERE statistics_name = 'func_deps_stat';
                                                dependencies                                                
------------------------------------------------------------------------------------------------------------
 {"3 => 4": 1.000000, "3 => 6": 1.000000, "4 => 6": 1.000000, "3, 4 => 6": 1.000000, "3, 6 => 4": 1.000000}
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = 1 AND b = ''1''');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = 1 AND b = ''1'' AND c = 1');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

-- IN
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 51) AND b = ''1''');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 51) AND b IN (''1'', ''2'')');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 2, 51, 52) AND b IN (''1'', ''2'')');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 2, 51, 52) AND b = ''1''');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 26, 51, 76) AND b IN (''1'', ''26'') AND c = 1');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 26, 51, 76) AND b IN (''1'', ''26'') AND c IN (1)');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 2, 26, 27, 51, 52, 76, 77) AND b IN (''1'', ''2'', ''26'', ''27'') AND c IN (1, 2)');
 estimated | actual 
-----------+--------
       400 |    400
(1 row)

-- OR clauses referencing the same attribute
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a = 1 OR a = 51) AND b = ''1''');
 estimated | actual 
-----------+--------
        99 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a = 1 OR a = 51) AND (b = ''1'' OR b = ''2'')');
 estimated | actual 
-----------+--------
        99 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a = 1 OR a = 2 OR a = 51 OR a = 52) AND (b = ''1'' OR b = ''2'')');
 estimated | actual 
-----------+--------
       197 |    200
(1 row)

-- OR clauses referencing different attributes are incompatible
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a = 1 OR b = ''1'') AND b = ''1''');
 estimated | actual 
-----------+--------
         3 |    100
(1 row)

-- ANY
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = ANY (ARRAY[1, 51]) AND b = ''1''');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = ANY (ARRAY[1, 51]) AND b = ANY (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = ANY (ARRAY[1, 2, 51, 52]) AND b = ANY (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = ANY (ARRAY[1, 26, 51, 76]) AND b = ANY (ARRAY[''1'', ''26'']) AND c = 1');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = ANY (ARRAY[1, 26, 51, 76]) AND b = ANY (ARRAY[''1'', ''26'']) AND c = ANY (ARRAY[1])');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = ANY (ARRAY[1, 2, 26, 27, 51, 52, 76, 77]) AND b = ANY (ARRAY[''1'', ''2'', ''26'', ''27'']) AND c = ANY (ARRAY[1, 2])');
 estimated | actual 
-----------+--------
       400 |    400
(1 row)

-- ANY with inequalities should not benefit from functional dependencies
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a < ANY (ARRAY[1, 51]) AND b > ''1''');
 estimated | actual 
-----------+--------
      2472 |   2400
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a >= ANY (ARRAY[1, 51]) AND b <= ANY (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
      1441 |   1250
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a <= ANY (ARRAY[1, 2, 51, 52]) AND b >= ANY (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
      3909 |   2550
(1 row)

-- ALL (should not benefit from functional dependencies)
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 51) AND b = ALL (ARRAY[''1''])');
 estimated | actual 
-----------+--------
         2 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 51) AND b = ALL (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a IN (1, 2, 51, 52) AND b = ALL (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

-- changing the type of column c causes all its stats to be dropped, reverting
-- to default estimates without any statistics, i.e. 0.5% selectivity for each
-- condition
ALTER TABLE functional_dependencies ALTER COLUMN c TYPE numeric;
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = 1 AND b = ''1'' AND c = 1');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

ANALYZE functional_dependencies;
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE a = 1 AND b = ''1'' AND c = 1');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

DROP STATISTICS func_deps_stat;
-- now try functional dependencies with expressions
1338
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = 2 AND upper(b) = ''1''');
1339 1340 1341 1342 1343
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

1344
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = 2 AND upper(b) = ''1'' AND (c + 1) = 2');
1345 1346 1347 1348 1349 1350
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

-- IN
1351
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 102) AND upper(b) = ''1''');
1352 1353 1354 1355 1356
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

1357
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 102) AND upper(b) IN (''1'', ''2'')');
1358 1359 1360 1361 1362
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

1363
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 4, 102, 104) AND upper(b) IN (''1'', ''2'')');
1364 1365 1366 1367 1368
 estimated | actual 
-----------+--------
         1 |    200
(1 row)

1369
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 4, 102, 104) AND upper(b) = ''1''');
1370 1371 1372 1373 1374
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

1375
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 52, 102, 152) AND upper(b) IN (''1'', ''26'') AND (c + 1) = 2');
1376 1377 1378 1379 1380
 estimated | actual 
-----------+--------
         1 |    200
(1 row)

1381
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 52, 102, 152) AND upper(b) IN (''1'', ''26'') AND (c + 1) IN (2)');
1382 1383 1384 1385 1386
 estimated | actual 
-----------+--------
         1 |    200
(1 row)

1387
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 4, 52, 54, 102, 104, 152, 154) AND upper(b) IN (''1'', ''2'', ''26'', ''27'') AND (c + 1) IN (2, 3)');
1388 1389 1390 1391 1392 1393
 estimated | actual 
-----------+--------
         1 |    400
(1 row)

-- OR clauses referencing the same attribute
1394
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE ((a * 2) = 2 OR (a * 2) = 102) AND upper(b) = ''1''');
1395 1396 1397 1398 1399
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

1400
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE ((a * 2) = 2 OR (a * 2) = 102) AND (upper(b) = ''1'' OR upper(b) = ''2'')');
1401 1402 1403 1404 1405
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

1406
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE ((a * 2) = 2 OR (a * 2) = 4 OR (a * 2) = 102 OR (a * 2) = 104) AND (upper(b) = ''1'' OR upper(b) = ''2'')');
1407 1408 1409 1410 1411 1412
 estimated | actual 
-----------+--------
         1 |    200
(1 row)

-- OR clauses referencing different attributes
1413
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE ((a * 2) = 2 OR upper(b) = ''1'') AND upper(b) = ''1''');
1414 1415 1416 1417 1418 1419
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

-- ANY
1420
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = ANY (ARRAY[2, 102]) AND upper(b) = ''1''');
1421 1422 1423 1424 1425
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

1426
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = ANY (ARRAY[2, 102]) AND upper(b) = ANY (ARRAY[''1'', ''2''])');
1427 1428 1429 1430 1431
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

1432
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = ANY (ARRAY[2, 4, 102, 104]) AND upper(b) = ANY (ARRAY[''1'', ''2''])');
1433 1434 1435 1436 1437
 estimated | actual 
-----------+--------
         1 |    200
(1 row)

1438
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = ANY (ARRAY[2, 52, 102, 152]) AND upper(b) = ANY (ARRAY[''1'', ''26'']) AND (c + 1) = 2');
1439 1440 1441 1442 1443
 estimated | actual 
-----------+--------
         1 |    200
(1 row)

1444
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = ANY (ARRAY[2, 52, 102, 152]) AND upper(b) = ANY (ARRAY[''1'', ''26'']) AND (c + 1) = ANY (ARRAY[2])');
1445 1446 1447 1448 1449
 estimated | actual 
-----------+--------
         1 |    200
(1 row)

1450
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = ANY (ARRAY[2, 4, 52, 54, 102, 104, 152, 154]) AND upper(b) = ANY (ARRAY[''1'', ''2'', ''26'', ''27'']) AND (c + 1) = ANY (ARRAY[2, 3])');
1451 1452 1453 1454 1455 1456 1457
 estimated | actual 
-----------+--------
         1 |    400
(1 row)

-- ANY with inequalities should not benefit from functional dependencies
-- the estimates however improve thanks to having expression statistics
1458
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) < ANY (ARRAY[2, 102]) AND upper(b) > ''1''');
1459 1460
 estimated | actual 
-----------+--------
1461
       926 |   2400
1462 1463
(1 row)

1464
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) >= ANY (ARRAY[2, 102]) AND upper(b) <= ANY (ARRAY[''1'', ''2''])');
1465 1466
 estimated | actual 
-----------+--------
1467
      1543 |   1250
1468 1469
(1 row)

1470
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) <= ANY (ARRAY[2, 4, 102, 104]) AND upper(b) >= ANY (ARRAY[''1'', ''2''])');
1471 1472
 estimated | actual 
-----------+--------
1473
      2229 |   2550
1474 1475 1476
(1 row)

-- ALL (should not benefit from functional dependencies)
1477
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 102) AND upper(b) = ALL (ARRAY[''1''])');
1478 1479 1480 1481 1482
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

1483
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 102) AND upper(b) = ALL (ARRAY[''1'', ''2''])');
1484 1485 1486 1487 1488
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

1489
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 4, 102, 104) AND upper(b) = ALL (ARRAY[''1'', ''2''])');
1490 1491 1492 1493 1494 1495
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

-- create statistics on expressions
1496
CREATE STATISTICS func_deps_stat (dependencies) ON (a * 2), upper(b), (c + 1) FROM functional_dependencies;
1497 1498 1499 1500 1501 1502 1503 1504
ANALYZE functional_dependencies;
-- print the detected dependencies
SELECT dependencies FROM pg_stats_ext WHERE statistics_name = 'func_deps_stat';
                                                      dependencies                                                      
------------------------------------------------------------------------------------------------------------------------
 {"-1 => -2": 1.000000, "-1 => -3": 1.000000, "-2 => -3": 1.000000, "-1, -2 => -3": 1.000000, "-1, -3 => -2": 1.000000}
(1 row)

1505
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = 2 AND upper(b) = ''1''');
1506 1507 1508 1509 1510
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

1511
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = 2 AND upper(b) = ''1'' AND (c + 1) = 2');
1512 1513 1514 1515 1516 1517
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

-- IN
1518
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 102) AND upper(b) = ''1''');
1519 1520 1521 1522 1523
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

1524
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 102) AND upper(b) IN (''1'', ''2'')');
1525 1526 1527 1528 1529
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

1530
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 4, 102, 104) AND upper(b) IN (''1'', ''2'')');
1531 1532 1533 1534 1535
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

1536
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 4, 102, 104) AND upper(b) = ''1''');
1537 1538 1539 1540 1541
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

1542
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 52, 102, 152) AND upper(b) IN (''1'', ''26'') AND (c + 1) = 2');
1543 1544 1545 1546 1547
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

1548
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 52, 102, 152) AND upper(b) IN (''1'', ''26'') AND (c + 1) IN (2)');
1549 1550 1551 1552 1553
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

1554
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 4, 52, 54, 102, 104, 152, 154) AND upper(b) IN (''1'', ''2'', ''26'', ''27'') AND (c + 1) IN (2, 3)');
1555 1556 1557 1558 1559 1560
 estimated | actual 
-----------+--------
       400 |    400
(1 row)

-- OR clauses referencing the same attribute
1561
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE ((a * 2) = 2 OR (a * 2) = 102) AND upper(b) = ''1''');
1562 1563 1564 1565 1566
 estimated | actual 
-----------+--------
        99 |    100
(1 row)

1567
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE ((a * 2) = 2 OR (a * 2) = 102) AND (upper(b) = ''1'' OR upper(b) = ''2'')');
1568 1569 1570 1571 1572
 estimated | actual 
-----------+--------
        99 |    100
(1 row)

1573
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE ((a * 2) = 2 OR (a * 2) = 4 OR (a * 2) = 102 OR (a * 2) = 104) AND (upper(b) = ''1'' OR upper(b) = ''2'')');
1574 1575 1576 1577 1578 1579
 estimated | actual 
-----------+--------
       197 |    200
(1 row)

-- OR clauses referencing different attributes
1580
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE ((a * 2) = 2 OR upper(b) = ''1'') AND upper(b) = ''1''');
1581 1582 1583 1584 1585 1586
 estimated | actual 
-----------+--------
         3 |    100
(1 row)

-- ANY
1587
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = ANY (ARRAY[2, 102]) AND upper(b) = ''1''');
1588 1589 1590 1591 1592
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

1593
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = ANY (ARRAY[2, 102]) AND upper(b) = ANY (ARRAY[''1'', ''2''])');
1594 1595 1596 1597 1598
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

1599
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = ANY (ARRAY[2, 4, 102, 104]) AND upper(b) = ANY (ARRAY[''1'', ''2''])');
1600 1601 1602 1603 1604
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

1605
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = ANY (ARRAY[2, 52, 102, 152]) AND upper(b) = ANY (ARRAY[''1'', ''26'']) AND (c + 1) = 2');
1606 1607 1608 1609 1610
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

1611
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = ANY (ARRAY[2, 52, 102, 152]) AND upper(b) = ANY (ARRAY[''1'', ''26'']) AND (c + 1) = ANY (ARRAY[2])');
1612 1613 1614 1615 1616
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

1617
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) = ANY (ARRAY[2, 4, 52, 54, 102, 104, 152, 154]) AND upper(b) = ANY (ARRAY[''1'', ''2'', ''26'', ''27'']) AND (c + 1) = ANY (ARRAY[2, 3])');
1618 1619 1620
 estimated | actual 
-----------+--------
       400 |    400
1621 1622
(1 row)

1623 1624
-- ANY with inequalities should not benefit from functional dependencies
-- the estimates however improve thanks to having expression statistics
1625
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) < ANY (ARRAY[2, 102]) AND upper(b) > ''1''');
1626 1627
 estimated | actual 
-----------+--------
1628
      2472 |   2400
1629 1630
(1 row)

1631
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) >= ANY (ARRAY[2, 102]) AND upper(b) <= ANY (ARRAY[''1'', ''2''])');
1632 1633
 estimated | actual 
-----------+--------
1634
      1441 |   1250
1635 1636
(1 row)

1637
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) <= ANY (ARRAY[2, 4, 102, 104]) AND upper(b) >= ANY (ARRAY[''1'', ''2''])');
1638 1639
 estimated | actual 
-----------+--------
1640
      3909 |   2550
1641 1642
(1 row)

1643
-- ALL (should not benefit from functional dependencies)
1644
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 102) AND upper(b) = ALL (ARRAY[''1''])');
1645 1646
 estimated | actual 
-----------+--------
1647
         2 |    100
1648 1649
(1 row)

1650
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 102) AND upper(b) = ALL (ARRAY[''1'', ''2''])');
1651 1652
 estimated | actual 
-----------+--------
1653
         1 |      0
1654
(1 row)
1655

1656
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies WHERE (a * 2) IN (2, 4, 102, 104) AND upper(b) = ALL (ARRAY[''1'', ''2''])');
1657 1658
 estimated | actual 
-----------+--------
1659
         1 |      0
1660 1661
(1 row)

1662 1663 1664 1665 1666 1667
-- check the ability to use multiple functional dependencies
CREATE TABLE functional_dependencies_multi (
	a INTEGER,
	b INTEGER,
	c INTEGER,
	d INTEGER
1668 1669
)
WITH (autovacuum_enabled = off);
1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684
INSERT INTO functional_dependencies_multi (a, b, c, d)
    SELECT
         mod(i,7),
         mod(i,7),
         mod(i,11),
         mod(i,11)
    FROM generate_series(1,5000) s(i);
ANALYZE functional_dependencies_multi;
-- estimates without any functional dependencies
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies_multi WHERE a = 0 AND b = 0');
 estimated | actual 
-----------+--------
       102 |    714
(1 row)

1685 1686 1687 1688 1689 1690
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies_multi WHERE 0 = a AND 0 = b');
 estimated | actual 
-----------+--------
       102 |    714
(1 row)

1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies_multi WHERE c = 0 AND d = 0');
 estimated | actual 
-----------+--------
        41 |    454
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies_multi WHERE a = 0 AND b = 0 AND c = 0 AND d = 0');
 estimated | actual 
-----------+--------
         1 |     64
(1 row)

1703 1704 1705 1706 1707 1708
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies_multi WHERE 0 = a AND b = 0 AND 0 = c AND d = 0');
 estimated | actual 
-----------+--------
         1 |     64
(1 row)

1709 1710 1711 1712 1713 1714 1715 1716 1717 1718
-- create separate functional dependencies
CREATE STATISTICS functional_dependencies_multi_1 (dependencies) ON a, b FROM functional_dependencies_multi;
CREATE STATISTICS functional_dependencies_multi_2 (dependencies) ON c, d FROM functional_dependencies_multi;
ANALYZE functional_dependencies_multi;
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies_multi WHERE a = 0 AND b = 0');
 estimated | actual 
-----------+--------
       714 |    714
(1 row)

1719 1720 1721 1722 1723 1724
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies_multi WHERE 0 = a AND 0 = b');
 estimated | actual 
-----------+--------
       714 |    714
(1 row)

1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies_multi WHERE c = 0 AND d = 0');
 estimated | actual 
-----------+--------
       454 |    454
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies_multi WHERE a = 0 AND b = 0 AND c = 0 AND d = 0');
 estimated | actual 
-----------+--------
        65 |     64
(1 row)

1737 1738 1739 1740 1741 1742
SELECT * FROM check_estimated_rows('SELECT * FROM functional_dependencies_multi WHERE 0 = a AND b = 0 AND 0 = c AND d = 0');
 estimated | actual 
-----------+--------
        65 |     64
(1 row)

1743
DROP TABLE functional_dependencies_multi;
1744 1745 1746 1747 1748 1749 1750 1751 1752
-- MCV lists
CREATE TABLE mcv_lists (
    filler1 TEXT,
    filler2 NUMERIC,
    a INT,
    b VARCHAR,
    filler3 DATE,
    c INT,
    d TEXT
1753 1754
)
WITH (autovacuum_enabled = off);
1755 1756 1757
-- random data (no MCV list)
INSERT INTO mcv_lists (a, b, c, filler1)
     SELECT mod(i,37), mod(i,41), mod(i,43), mod(i,47) FROM generate_series(1,5000) s(i);
1758
ANALYZE mcv_lists;
1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 AND b = ''1''');
 estimated | actual 
-----------+--------
         3 |      4
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 AND b = ''1'' AND c = 1');
 estimated | actual 
-----------+--------
         1 |      1
(1 row)

-- create statistics
CREATE STATISTICS mcv_lists_stats (mcv) ON a, b, c FROM mcv_lists;
ANALYZE mcv_lists;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 AND b = ''1''');
 estimated | actual 
-----------+--------
         3 |      4
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 AND b = ''1'' AND c = 1');
 estimated | actual 
-----------+--------
         1 |      1
(1 row)

1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818
TRUNCATE mcv_lists;
DROP STATISTICS mcv_lists_stats;
-- random data (no MCV list), but with expression
INSERT INTO mcv_lists (a, b, c, filler1)
     SELECT i, i, i, i FROM generate_series(1,1000) s(i);
ANALYZE mcv_lists;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,7) = 1 AND mod(b::int,11) = 1');
 estimated | actual 
-----------+--------
         1 |     13
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,7) = 1 AND mod(b::int,11) = 1 AND mod(c,13) = 1');
 estimated | actual 
-----------+--------
         1 |      1
(1 row)

-- create statistics
CREATE STATISTICS mcv_lists_stats (mcv) ON (mod(a,7)), (mod(b::int,11)), (mod(c,13)) FROM mcv_lists;
ANALYZE mcv_lists;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,7) = 1 AND mod(b::int,11) = 1');
 estimated | actual 
-----------+--------
        13 |     13
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,7) = 1 AND mod(b::int,11) = 1 AND mod(c,13) = 1');
 estimated | actual 
-----------+--------
         1 |      1
(1 row)

1819 1820 1821 1822 1823
-- 100 distinct combinations, all in the MCV list
TRUNCATE mcv_lists;
DROP STATISTICS mcv_lists_stats;
INSERT INTO mcv_lists (a, b, c, filler1)
     SELECT mod(i,100), mod(i,50), mod(i,25), i FROM generate_series(1,5000) s(i);
1824
ANALYZE mcv_lists;
1825 1826 1827 1828 1829 1830
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 AND b = ''1''');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

1831 1832 1833 1834 1835 1836
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 1 = a AND ''1'' = b');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

1837 1838 1839 1840 1841 1842
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < 1 AND b < ''1''');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

1843 1844 1845 1846 1847 1848
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 1 > a AND ''1'' > b');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

1849 1850 1851 1852 1853 1854
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a <= 0 AND b <= ''0''');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

1855 1856 1857 1858 1859 1860
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 0 >= a AND ''0'' >= b');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 AND b = ''1'' AND c = 1');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < 5 AND b < ''1'' AND c < 5');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

1873 1874 1875 1876 1877 1878
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < 5 AND ''1'' > b AND 5 > c');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

1879 1880 1881 1882 1883 1884
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a <= 4 AND b <= ''0'' AND c <= 4');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

1885 1886 1887 1888 1889 1890
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 4 >= a AND ''0'' >= b AND 4 >= c');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 OR b = ''1'' OR c = 1');
 estimated | actual 
-----------+--------
       343 |    200
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 OR b = ''1'' OR c = 1 OR d IS NOT NULL');
 estimated | actual 
-----------+--------
       343 |    200
(1 row)

1903 1904 1905 1906 1907 1908
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IN (1, 2, 51, 52) AND b IN ( ''1'', ''2'')');
 estimated | actual 
-----------+--------
         8 |    200
(1 row)

1909 1910 1911 1912 1913 1914
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IN (1, 2, 51, 52, NULL) AND b IN ( ''1'', ''2'', NULL)');
 estimated | actual 
-----------+--------
         8 |    200
(1 row)

1915 1916 1917 1918 1919 1920
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = ANY (ARRAY[1, 2, 51, 52]) AND b = ANY (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
         8 |    200
(1 row)

1921 1922 1923 1924 1925 1926
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = ANY (ARRAY[NULL, 1, 2, 51, 52]) AND b = ANY (ARRAY[''1'', ''2'', NULL])');
 estimated | actual 
-----------+--------
         8 |    200
(1 row)

1927 1928 1929 1930 1931 1932
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a <= ANY (ARRAY[1, 2, 3]) AND b IN (''1'', ''2'', ''3'')');
 estimated | actual 
-----------+--------
        26 |    150
(1 row)

1933 1934 1935 1936 1937 1938
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a <= ANY (ARRAY[1, NULL, 2, 3]) AND b IN (''1'', ''2'', NULL, ''3'')');
 estimated | actual 
-----------+--------
        26 |    150
(1 row)

1939 1940 1941 1942 1943 1944
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < ALL (ARRAY[4, 5]) AND c > ANY (ARRAY[1, 2, 3])');
 estimated | actual 
-----------+--------
        10 |    100
(1 row)

1945 1946 1947 1948 1949 1950
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < ALL (ARRAY[4, 5]) AND c > ANY (ARRAY[1, 2, 3, NULL])');
 estimated | actual 
-----------+--------
        10 |    100
(1 row)

1951 1952 1953 1954 1955 1956
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < ALL (ARRAY[4, 5]) AND b IN (''1'', ''2'', ''3'') AND c > ANY (ARRAY[1, 2, 3])');
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

1957 1958 1959 1960 1961 1962
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < ALL (ARRAY[4, 5]) AND b IN (''1'', ''2'', NULL, ''3'') AND c > ANY (ARRAY[1, 2, NULL, 3])');
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

1963 1964 1965 1966 1967 1968 1969 1970 1971
-- create statistics
CREATE STATISTICS mcv_lists_stats (mcv) ON a, b, c FROM mcv_lists;
ANALYZE mcv_lists;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 AND b = ''1''');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

1972 1973 1974 1975 1976 1977
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 1 = a AND ''1'' = b');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

1978 1979 1980 1981 1982 1983
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < 1 AND b < ''1''');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

1984 1985 1986 1987 1988 1989
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 1 > a AND ''1'' > b');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

1990 1991 1992 1993 1994 1995
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a <= 0 AND b <= ''0''');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

1996 1997 1998 1999 2000 2001
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 0 >= a AND ''0'' >= b');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 AND b = ''1'' AND c = 1');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < 5 AND b < ''1'' AND c < 5');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

2014 2015 2016 2017 2018 2019
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < 5 AND ''1'' > b AND 5 > c');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

2020 2021 2022 2023 2024 2025
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a <= 4 AND b <= ''0'' AND c <= 4');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

2026 2027 2028 2029 2030 2031
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 4 >= a AND ''0'' >= b AND 4 >= c');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

2032 2033 2034 2035 2036 2037
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 OR b = ''1'' OR c = 1');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

2038 2039 2040 2041 2042 2043
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 OR b = ''1'' OR c = 1 OR d IS NOT NULL');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

2044 2045 2046 2047 2048 2049
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 OR b = ''1'' OR c = 1 OR d IS NOT NULL');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

2050 2051 2052 2053 2054 2055
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IN (1, 2, 51, 52) AND b IN ( ''1'', ''2'')');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

2056 2057 2058 2059 2060 2061
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IN (1, 2, 51, 52, NULL) AND b IN ( ''1'', ''2'', NULL)');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

2062 2063 2064 2065 2066 2067
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = ANY (ARRAY[1, 2, 51, 52]) AND b = ANY (ARRAY[''1'', ''2''])');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

2068 2069 2070 2071 2072 2073
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = ANY (ARRAY[NULL, 1, 2, 51, 52]) AND b = ANY (ARRAY[''1'', ''2'', NULL])');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

2074 2075 2076 2077 2078 2079
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a <= ANY (ARRAY[1, 2, 3]) AND b IN (''1'', ''2'', ''3'')');
 estimated | actual 
-----------+--------
       150 |    150
(1 row)

2080 2081 2082 2083 2084 2085
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a <= ANY (ARRAY[1, NULL, 2, 3]) AND b IN (''1'', ''2'', NULL, ''3'')');
 estimated | actual 
-----------+--------
       150 |    150
(1 row)

2086 2087 2088 2089 2090 2091
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < ALL (ARRAY[4, 5]) AND c > ANY (ARRAY[1, 2, 3])');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

2092 2093 2094 2095 2096 2097
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < ALL (ARRAY[4, 5]) AND c > ANY (ARRAY[1, 2, 3, NULL])');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

2098 2099 2100 2101 2102 2103
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < ALL (ARRAY[4, 5]) AND b IN (''1'', ''2'', ''3'') AND c > ANY (ARRAY[1, 2, 3])');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

2104 2105 2106 2107 2108 2109
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a < ALL (ARRAY[4, 5]) AND b IN (''1'', ''2'', NULL, ''3'') AND c > ANY (ARRAY[1, 2, NULL, 3])');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

2110 2111
-- check change of unrelated column type does not reset the MCV statistics
ALTER TABLE mcv_lists ALTER COLUMN d TYPE VARCHAR(64);
2112 2113 2114 2115
SELECT d.stxdmcv IS NOT NULL
  FROM pg_statistic_ext s, pg_statistic_ext_data d
 WHERE s.stxname = 'mcv_lists_stats'
   AND d.stxoid = s.oid;
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128
 ?column? 
----------
 t
(1 row)

-- check change of column type resets the MCV statistics
ALTER TABLE mcv_lists ALTER COLUMN c TYPE numeric;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 AND b = ''1''');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

2129
ANALYZE mcv_lists;
2130 2131 2132 2133 2134 2135
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 AND b = ''1''');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341
-- 100 distinct combinations, all in the MCV list, but with expressions
TRUNCATE mcv_lists;
DROP STATISTICS mcv_lists_stats;
INSERT INTO mcv_lists (a, b, c, filler1)
     SELECT i, i, i, i FROM generate_series(1,1000) s(i);
ANALYZE mcv_lists;
-- without any stats on the expressions, we have to use default selectivities, which
-- is why the estimates here are different from the pre-computed case above
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) = 1 AND mod(b::int,10) = 1');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 1 = mod(a,20) AND 1 = mod(b::int,10)');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) < 1 AND mod(b::int,10) < 1');
 estimated | actual 
-----------+--------
       111 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 1 > mod(a,20) AND 1 > mod(b::int,10)');
 estimated | actual 
-----------+--------
       111 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) = 1 AND mod(b::int,10) = 1 AND mod(c,5) = 1');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) = 1 OR mod(b::int,10) = 1 OR mod(c,25) = 1 OR d IS NOT NULL');
 estimated | actual 
-----------+--------
        15 |    120
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) IN (1, 2, 51, 52, NULL) AND mod(b::int,10) IN ( 1, 2, NULL)');
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) = ANY (ARRAY[1, 2, 51, 52]) AND mod(b::int,10) = ANY (ARRAY[1, 2])');
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) <= ANY (ARRAY[1, NULL, 2, 3]) AND mod(b::int,10) IN (1, 2, NULL, 3)');
 estimated | actual 
-----------+--------
        11 |    150
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) < ALL (ARRAY[4, 5]) AND mod(b::int,10) IN (1, 2, 3) AND mod(c,5) > ANY (ARRAY[1, 2, 3])');
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

-- create statistics with expressions only (we create three separate stats, in order not to build more complex extended stats)
CREATE STATISTICS mcv_lists_stats_1 ON (mod(a,20)) FROM mcv_lists;
CREATE STATISTICS mcv_lists_stats_2 ON (mod(b::int,10)) FROM mcv_lists;
CREATE STATISTICS mcv_lists_stats_3 ON (mod(c,5)) FROM mcv_lists;
ANALYZE mcv_lists;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) = 1 AND mod(b::int,10) = 1');
 estimated | actual 
-----------+--------
         5 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 1 = mod(a,20) AND 1 = mod(b::int,10)');
 estimated | actual 
-----------+--------
         5 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) < 1 AND mod(b::int,10) < 1');
 estimated | actual 
-----------+--------
         5 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 1 > mod(a,20) AND 1 > mod(b::int,10)');
 estimated | actual 
-----------+--------
         5 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) = 1 AND mod(b::int,10) = 1 AND mod(c,5) = 1');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) = 1 OR mod(b::int,10) = 1 OR mod(c,25) = 1 OR d IS NOT NULL');
 estimated | actual 
-----------+--------
       149 |    120
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) IN (1, 2, 51, 52, NULL) AND mod(b::int,10) IN ( 1, 2, NULL)');
 estimated | actual 
-----------+--------
        20 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) = ANY (ARRAY[1, 2, 51, 52]) AND mod(b::int,10) = ANY (ARRAY[1, 2])');
 estimated | actual 
-----------+--------
        20 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) <= ANY (ARRAY[1, NULL, 2, 3]) AND mod(b::int,10) IN (1, 2, NULL, 3)');
 estimated | actual 
-----------+--------
       116 |    150
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) < ALL (ARRAY[4, 5]) AND mod(b::int,10) IN (1, 2, 3) AND mod(c,5) > ANY (ARRAY[1, 2, 3])');
 estimated | actual 
-----------+--------
        12 |    100
(1 row)

DROP STATISTICS mcv_lists_stats_1;
DROP STATISTICS mcv_lists_stats_2;
DROP STATISTICS mcv_lists_stats_3;
-- create statistics with both MCV and expressions
CREATE STATISTICS mcv_lists_stats (mcv) ON (mod(a,20)), (mod(b::int,10)), (mod(c,5)) FROM mcv_lists;
ANALYZE mcv_lists;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) = 1 AND mod(b::int,10) = 1');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 1 = mod(a,20) AND 1 = mod(b::int,10)');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) < 1 AND mod(b::int,10) < 1');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE 1 > mod(a,20) AND 1 > mod(b::int,10)');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) = 1 AND mod(b::int,10) = 1 AND mod(c,5) = 1');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) = 1 OR mod(b::int,10) = 1 OR mod(c,25) = 1 OR d IS NOT NULL');
 estimated | actual 
-----------+--------
       105 |    120
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) IN (1, 2, 51, 52, NULL) AND mod(b::int,10) IN ( 1, 2, NULL)');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) = ANY (ARRAY[1, 2, 51, 52]) AND mod(b::int,10) = ANY (ARRAY[1, 2])');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) <= ANY (ARRAY[1, NULL, 2, 3]) AND mod(b::int,10) IN (1, 2, NULL, 3)');
 estimated | actual 
-----------+--------
       150 |    150
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) < ALL (ARRAY[4, 5]) AND mod(b::int,10) IN (1, 2, 3) AND mod(c,5) > ANY (ARRAY[1, 2, 3])');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

-- we can't use the statistic for OR clauses that are not fully covered (missing 'd' attribute)
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE mod(a,20) = 1 OR mod(b::int,10) = 1 OR mod(c,5) = 1 OR d IS NOT NULL');
 estimated | actual 
-----------+--------
       200 |    200
(1 row)

2342 2343 2344 2345 2346 2347 2348 2349 2350 2351
-- 100 distinct combinations with NULL values, all in the MCV list
TRUNCATE mcv_lists;
DROP STATISTICS mcv_lists_stats;
INSERT INTO mcv_lists (a, b, c, filler1)
     SELECT
         (CASE WHEN mod(i,100) = 1 THEN NULL ELSE mod(i,100) END),
         (CASE WHEN mod(i,50) = 1  THEN NULL ELSE mod(i,50) END),
         (CASE WHEN mod(i,25) = 1  THEN NULL ELSE mod(i,25) END),
         i
     FROM generate_series(1,5000) s(i);
2352
ANALYZE mcv_lists;
2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IS NULL AND b IS NULL');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IS NULL AND b IS NULL AND c IS NULL');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IS NULL AND b IS NOT NULL');
 estimated | actual 
-----------+--------
        49 |      0
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IS NOT NULL AND b IS NULL AND c IS NOT NULL');
 estimated | actual 
-----------+--------
        95 |      0
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IN (0, 1) AND b IN (''0'', ''1'')');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397
-- create statistics
CREATE STATISTICS mcv_lists_stats (mcv) ON a, b, c FROM mcv_lists;
ANALYZE mcv_lists;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IS NULL AND b IS NULL');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IS NULL AND b IS NULL AND c IS NULL');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IS NULL AND b IS NOT NULL');
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IS NOT NULL AND b IS NULL AND c IS NOT NULL');
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IN (0, 1) AND b IN (''0'', ''1'')');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

2416 2417 2418
-- test pg_mcv_list_items with a very simple (single item) MCV list
TRUNCATE mcv_lists;
INSERT INTO mcv_lists (a, b, c) SELECT 1, 2, 3 FROM generate_series(1,1000) s(i);
2419
ANALYZE mcv_lists;
2420 2421 2422 2423 2424
SELECT m.*
  FROM pg_statistic_ext s, pg_statistic_ext_data d,
       pg_mcv_list_items(d.stxdmcv) m
 WHERE s.stxname = 'mcv_lists_stats'
   AND d.stxoid = s.oid;
2425 2426 2427
 index | values  |  nulls  | frequency | base_frequency 
-------+---------+---------+-----------+----------------
     0 | {1,2,3} | {f,f,f} |         1 |              1
2428 2429
(1 row)

2430 2431 2432 2433 2434
-- 2 distinct combinations with NULL values, all in the MCV list
TRUNCATE mcv_lists;
DROP STATISTICS mcv_lists_stats;
INSERT INTO mcv_lists (a, b, c, d)
     SELECT
2435
         NULL, -- always NULL
2436 2437 2438 2439
         (CASE WHEN mod(i,2) = 0 THEN NULL ELSE 'x' END),
         (CASE WHEN mod(i,2) = 0 THEN NULL ELSE 0 END),
         (CASE WHEN mod(i,2) = 0 THEN NULL ELSE 'x' END)
     FROM generate_series(1,5000) s(i);
2440
ANALYZE mcv_lists;
2441 2442 2443 2444 2445 2446
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE b = ''x'' OR d = ''x''');
 estimated | actual 
-----------+--------
      3750 |   2500
(1 row)

2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 OR b = ''x'' OR d = ''x''');
 estimated | actual 
-----------+--------
      3750 |   2500
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IS NULL AND (b = ''x'' OR d = ''x'')');
 estimated | actual 
-----------+--------
      3750 |   2500
(1 row)

2459
-- create statistics
2460
CREATE STATISTICS mcv_lists_stats (mcv) ON a, b, d FROM mcv_lists;
2461
ANALYZE mcv_lists;
2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473
-- test pg_mcv_list_items with MCV list containing variable-length data and NULLs
SELECT m.*
  FROM pg_statistic_ext s, pg_statistic_ext_data d,
       pg_mcv_list_items(d.stxdmcv) m
 WHERE s.stxname = 'mcv_lists_stats'
   AND d.stxoid = s.oid;
 index |      values      |  nulls  | frequency | base_frequency 
-------+------------------+---------+-----------+----------------
     0 | {NULL,x,x}       | {t,f,f} |       0.5 |           0.25
     1 | {NULL,NULL,NULL} | {t,t,t} |       0.5 |           0.25
(2 rows)

2474 2475 2476 2477 2478 2479
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE b = ''x'' OR d = ''x''');
 estimated | actual 
-----------+--------
      2500 |   2500
(1 row)

2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a = 1 OR b = ''x'' OR d = ''x''');
 estimated | actual 
-----------+--------
      2500 |   2500
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists WHERE a IS NULL AND (b = ''x'' OR d = ''x'')');
 estimated | actual 
-----------+--------
      2500 |   2500
(1 row)

-- mcv with pass-by-ref fixlen types, e.g. uuid
CREATE TABLE mcv_lists_uuid (
    a UUID,
    b UUID,
    c UUID
2497 2498
)
WITH (autovacuum_enabled = off);
2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533
INSERT INTO mcv_lists_uuid (a, b, c)
     SELECT
         md5(mod(i,100)::text)::uuid,
         md5(mod(i,50)::text)::uuid,
         md5(mod(i,25)::text)::uuid
     FROM generate_series(1,5000) s(i);
ANALYZE mcv_lists_uuid;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_uuid WHERE a = ''1679091c-5a88-0faf-6fb5-e6087eb1b2dc'' AND b = ''1679091c-5a88-0faf-6fb5-e6087eb1b2dc''');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_uuid WHERE a = ''1679091c-5a88-0faf-6fb5-e6087eb1b2dc'' AND b = ''1679091c-5a88-0faf-6fb5-e6087eb1b2dc'' AND c = ''1679091c-5a88-0faf-6fb5-e6087eb1b2dc''');
 estimated | actual 
-----------+--------
         1 |     50
(1 row)

CREATE STATISTICS mcv_lists_uuid_stats (mcv) ON a, b, c
  FROM mcv_lists_uuid;
ANALYZE mcv_lists_uuid;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_uuid WHERE a = ''1679091c-5a88-0faf-6fb5-e6087eb1b2dc'' AND b = ''1679091c-5a88-0faf-6fb5-e6087eb1b2dc''');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_uuid WHERE a = ''1679091c-5a88-0faf-6fb5-e6087eb1b2dc'' AND b = ''1679091c-5a88-0faf-6fb5-e6087eb1b2dc'' AND c = ''1679091c-5a88-0faf-6fb5-e6087eb1b2dc''');
 estimated | actual 
-----------+--------
        50 |     50
(1 row)

DROP TABLE mcv_lists_uuid;
2534 2535 2536 2537 2538
-- mcv with arrays
CREATE TABLE mcv_lists_arrays (
    a TEXT[],
    b NUMERIC[],
    c INT[]
2539 2540
)
WITH (autovacuum_enabled = off);
2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554
INSERT INTO mcv_lists_arrays (a, b, c)
     SELECT
         ARRAY[md5((i/100)::text), md5((i/100-1)::text), md5((i/100+1)::text)],
         ARRAY[(i/100-1)::numeric/1000, (i/100)::numeric/1000, (i/100+1)::numeric/1000],
         ARRAY[(i/100-1), i/100, (i/100+1)]
     FROM generate_series(1,5000) s(i);
CREATE STATISTICS mcv_lists_arrays_stats (mcv) ON a, b, c
  FROM mcv_lists_arrays;
ANALYZE mcv_lists_arrays;
-- mcv with bool
CREATE TABLE mcv_lists_bool (
    a BOOL,
    b BOOL,
    c BOOL
2555 2556
)
WITH (autovacuum_enabled = off);
2557 2558 2559 2560
INSERT INTO mcv_lists_bool (a, b, c)
     SELECT
         (mod(i,2) = 0), (mod(i,4) = 0), (mod(i,8) = 0)
     FROM generate_series(1,10000) s(i);
2561
ANALYZE mcv_lists_bool;
2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_bool WHERE a AND b AND c');
 estimated | actual 
-----------+--------
       156 |   1250
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_bool WHERE NOT a AND b AND c');
 estimated | actual 
-----------+--------
       156 |      0
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_bool WHERE NOT a AND NOT b AND c');
 estimated | actual 
-----------+--------
       469 |      0
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_bool WHERE NOT a AND b AND NOT c');
 estimated | actual 
-----------+--------
      1094 |      0
(1 row)

CREATE STATISTICS mcv_lists_bool_stats (mcv) ON a, b, c
  FROM mcv_lists_bool;
ANALYZE mcv_lists_bool;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_bool WHERE a AND b AND c');
 estimated | actual 
-----------+--------
      1250 |   1250
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_bool WHERE NOT a AND b AND c');
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_bool WHERE NOT a AND NOT b AND c');
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_bool WHERE NOT a AND b AND NOT c');
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730
-- mcv covering just a small fraction of data
CREATE TABLE mcv_lists_partial (
    a INT,
    b INT,
    c INT
);
-- 10 frequent groups, each with 100 elements
INSERT INTO mcv_lists_partial (a, b, c)
     SELECT
         mod(i,10),
         mod(i,10),
         mod(i,10)
     FROM generate_series(0,999) s(i);
-- 100 groups that will make it to the MCV list (includes the 10 frequent ones)
INSERT INTO mcv_lists_partial (a, b, c)
     SELECT
         i,
         i,
         i
     FROM generate_series(0,99) s(i);
-- 4000 groups in total, most of which won't make it (just a single item)
INSERT INTO mcv_lists_partial (a, b, c)
     SELECT
         i,
         i,
         i
     FROM generate_series(0,3999) s(i);
ANALYZE mcv_lists_partial;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE a = 0 AND b = 0 AND c = 0');
 estimated | actual 
-----------+--------
         1 |    102
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE a = 0 OR b = 0 OR c = 0');
 estimated | actual 
-----------+--------
       300 |    102
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE a = 10 AND b = 10 AND c = 10');
 estimated | actual 
-----------+--------
         1 |      2
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE a = 10 OR b = 10 OR c = 10');
 estimated | actual 
-----------+--------
         6 |      2
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE a = 0 AND b = 0 AND c = 10');
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE a = 0 OR b = 0 OR c = 10');
 estimated | actual 
-----------+--------
       204 |    104
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE (a = 0 AND b = 0 AND c = 0) OR (a = 1 AND b = 1 AND c = 1) OR (a = 2 AND b = 2 AND c = 2)');
 estimated | actual 
-----------+--------
         1 |    306
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE (a = 0 AND b = 0) OR (a = 0 AND c = 0) OR (b = 0 AND c = 0)');
 estimated | actual 
-----------+--------
         6 |    102
(1 row)

CREATE STATISTICS mcv_lists_partial_stats (mcv) ON a, b, c
  FROM mcv_lists_partial;
ANALYZE mcv_lists_partial;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE a = 0 AND b = 0 AND c = 0');
 estimated | actual 
-----------+--------
       102 |    102
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE a = 0 OR b = 0 OR c = 0');
 estimated | actual 
-----------+--------
        96 |    102
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE a = 10 AND b = 10 AND c = 10');
 estimated | actual 
-----------+--------
         2 |      2
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE a = 10 OR b = 10 OR c = 10');
 estimated | actual 
-----------+--------
         2 |      2
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE a = 0 AND b = 0 AND c = 10');
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE a = 0 OR b = 0 OR c = 10');
 estimated | actual 
-----------+--------
       102 |    104
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE (a = 0 AND b = 0 AND c = 0) OR (a = 1 AND b = 1 AND c = 1) OR (a = 2 AND b = 2 AND c = 2)');
 estimated | actual 
-----------+--------
2731
       306 |    306
2732 2733 2734 2735 2736
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_partial WHERE (a = 0 AND b = 0) OR (a = 0 AND c = 0) OR (b = 0 AND c = 0)');
 estimated | actual 
-----------+--------
2737
       108 |    102
2738 2739 2740
(1 row)

DROP TABLE mcv_lists_partial;
2741 2742 2743 2744 2745 2746
-- check the ability to use multiple MCV lists
CREATE TABLE mcv_lists_multi (
	a INTEGER,
	b INTEGER,
	c INTEGER,
	d INTEGER
2747 2748
)
WITH (autovacuum_enabled = off);
2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769
INSERT INTO mcv_lists_multi (a, b, c, d)
    SELECT
         mod(i,5),
         mod(i,5),
         mod(i,7),
         mod(i,7)
    FROM generate_series(1,5000) s(i);
ANALYZE mcv_lists_multi;
-- estimates without any mcv statistics
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE a = 0 AND b = 0');
 estimated | actual 
-----------+--------
       200 |   1000
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE c = 0 AND d = 0');
 estimated | actual 
-----------+--------
       102 |    714
(1 row)

2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE b = 0 AND c = 0');
 estimated | actual 
-----------+--------
       143 |    142
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE b = 0 OR c = 0');
 estimated | actual 
-----------+--------
      1571 |   1572
(1 row)

2782 2783 2784 2785 2786 2787
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE a = 0 AND b = 0 AND c = 0 AND d = 0');
 estimated | actual 
-----------+--------
         4 |    142
(1 row)

2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE (a = 0 AND b = 0) OR (c = 0 AND d = 0)');
 estimated | actual 
-----------+--------
       298 |   1572
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE a = 0 OR b = 0 OR c = 0 OR d = 0');
 estimated | actual 
-----------+--------
      2649 |   1572
(1 row)

2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815
-- create separate MCV statistics
CREATE STATISTICS mcv_lists_multi_1 (mcv) ON a, b FROM mcv_lists_multi;
CREATE STATISTICS mcv_lists_multi_2 (mcv) ON c, d FROM mcv_lists_multi;
ANALYZE mcv_lists_multi;
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE a = 0 AND b = 0');
 estimated | actual 
-----------+--------
      1000 |   1000
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE c = 0 AND d = 0');
 estimated | actual 
-----------+--------
       714 |    714
(1 row)

2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE b = 0 AND c = 0');
 estimated | actual 
-----------+--------
       143 |    142
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE b = 0 OR c = 0');
 estimated | actual 
-----------+--------
      1571 |   1572
(1 row)

2828 2829 2830 2831 2832 2833
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE a = 0 AND b = 0 AND c = 0 AND d = 0');
 estimated | actual 
-----------+--------
       143 |    142
(1 row)

2834 2835 2836 2837 2838 2839 2840 2841 2842
SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE (a = 0 AND b = 0) OR (c = 0 AND d = 0)');
 estimated | actual 
-----------+--------
      1571 |   1572
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM mcv_lists_multi WHERE a = 0 OR b = 0 OR c = 0 OR d = 0');
 estimated | actual 
-----------+--------
2843
      1571 |   1572
2844 2845
(1 row)

2846
DROP TABLE mcv_lists_multi;
2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940
-- statistics on integer expressions
CREATE TABLE expr_stats (a int, b int, c int);
INSERT INTO expr_stats SELECT mod(i,10), mod(i,10), mod(i,10) FROM generate_series(1,1000) s(i);
ANALYZE expr_stats;
SELECT * FROM check_estimated_rows('SELECT * FROM expr_stats WHERE (2*a) = 0 AND (3*b) = 0');
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM expr_stats WHERE (a+b) = 0 AND (a-b) = 0');
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

CREATE STATISTICS expr_stats_1 (mcv) ON (a+b), (a-b), (2*a), (3*b) FROM expr_stats;
ANALYZE expr_stats;
SELECT * FROM check_estimated_rows('SELECT * FROM expr_stats WHERE (2*a) = 0 AND (3*b) = 0');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM expr_stats WHERE (a+b) = 0 AND (a-b) = 0');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

DROP STATISTICS expr_stats_1;
DROP TABLE expr_stats;
-- statistics on a mix columns and expressions
CREATE TABLE expr_stats (a int, b int, c int);
INSERT INTO expr_stats SELECT mod(i,10), mod(i,10), mod(i,10) FROM generate_series(1,1000) s(i);
ANALYZE expr_stats;
SELECT * FROM check_estimated_rows('SELECT * FROM expr_stats WHERE a = 0 AND (2*a) = 0 AND (3*b) = 0');
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM expr_stats WHERE a = 3 AND b = 3 AND (a-b) = 0');
 estimated | actual 
-----------+--------
         1 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM expr_stats WHERE a = 0 AND b = 1 AND (a-b) = 0');
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

CREATE STATISTICS expr_stats_1 (mcv) ON a, b, (2*a), (3*b), (a+b), (a-b) FROM expr_stats;
ANALYZE expr_stats;
SELECT * FROM check_estimated_rows('SELECT * FROM expr_stats WHERE a = 0 AND (2*a) = 0 AND (3*b) = 0');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM expr_stats WHERE a = 3 AND b = 3 AND (a-b) = 0');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

SELECT * FROM check_estimated_rows('SELECT * FROM expr_stats WHERE a = 0 AND b = 1 AND (a-b) = 0');
 estimated | actual 
-----------+--------
         1 |      0
(1 row)

DROP TABLE expr_stats;
-- statistics on expressions with different data types
CREATE TABLE expr_stats (a int, b name, c text);
INSERT INTO expr_stats SELECT mod(i,10), md5(mod(i,10)::text), md5(mod(i,10)::text) FROM generate_series(1,1000) s(i);
ANALYZE expr_stats;
SELECT * FROM check_estimated_rows('SELECT * FROM expr_stats WHERE a = 0 AND (b || c) <= ''z'' AND (c || b) >= ''0''');
 estimated | actual 
-----------+--------
        11 |    100
(1 row)

CREATE STATISTICS expr_stats_1 (mcv) ON a, b, (b || c), (c || b) FROM expr_stats;
ANALYZE expr_stats;
SELECT * FROM check_estimated_rows('SELECT * FROM expr_stats WHERE a = 0 AND (b || c) <= ''z'' AND (c || b) >= ''0''');
 estimated | actual 
-----------+--------
       100 |    100
(1 row)

DROP TABLE expr_stats;
2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959
-- test handling of a mix of compatible and incompatible expressions
CREATE TABLE expr_stats_incompatible_test (
    c0 double precision,
    c1 boolean NOT NULL
);
CREATE STATISTICS expr_stat_comp_1 ON c0, c1 FROM expr_stats_incompatible_test;
INSERT INTO expr_stats_incompatible_test VALUES (1234,false), (5678,true);
ANALYZE expr_stats_incompatible_test;
SELECT c0 FROM ONLY expr_stats_incompatible_test WHERE
(
  upper('x') LIKE ('x'||('[0,1]'::int4range))
  AND
  (c0 IN (0, 1) OR c1)
);
 c0 
----
(0 rows)

DROP TABLE expr_stats_incompatible_test;
2960 2961 2962 2963 2964
-- Permission tests. Users should not be able to see specific data values in
-- the extended statistics, if they lack permission to see those values in
-- the underlying table.
--
-- Currently this is only relevant for MCV stats.
2965 2966
CREATE SCHEMA tststats;
CREATE TABLE tststats.priv_test_tbl (
2967 2968 2969
    a int,
    b int
);
2970
INSERT INTO tststats.priv_test_tbl
2971
     SELECT mod(i,5), mod(i,10) FROM generate_series(1,100) s(i);
2972 2973 2974
CREATE STATISTICS tststats.priv_test_stats (mcv) ON a, b
  FROM tststats.priv_test_tbl;
ANALYZE tststats.priv_test_tbl;
2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989
-- Check printing info about extended statistics by \dX
create table stts_t1 (a int, b int);
create statistics stts_1 (ndistinct) on a, b from stts_t1;
create statistics stts_2 (ndistinct, dependencies) on a, b from stts_t1;
create statistics stts_3 (ndistinct, dependencies, mcv) on a, b from stts_t1;
create table stts_t2 (a int, b int, c int);
create statistics stts_4 on b, c from stts_t2;
create table stts_t3 (col1 int, col2 int, col3 int);
create statistics stts_hoge on col1, col2, col3 from stts_t3;
create schema stts_s1;
create schema stts_s2;
create statistics stts_s1.stts_foo on col1, col2 from stts_t3;
create statistics stts_s2.stts_yama (dependencies, mcv) on col1, col3 from stts_t3;
insert into stts_t1 select i,i from generate_series(1,100) i;
analyze stts_t1;
2990
set search_path to public, stts_s1, stts_s2, tststats;
2991
\dX
2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005
                                                           List of extended statistics
  Schema  |          Name          |                               Definition                               | Ndistinct | Dependencies |   MCV   
----------+------------------------+------------------------------------------------------------------------+-----------+--------------+---------
 public   | func_deps_stat         | ((a * 2)), upper(b), ((c + (1)::numeric)) FROM functional_dependencies |           | defined      | 
 public   | mcv_lists_arrays_stats | a, b, c FROM mcv_lists_arrays                                          |           |              | defined
 public   | mcv_lists_bool_stats   | a, b, c FROM mcv_lists_bool                                            |           |              | defined
 public   | mcv_lists_stats        | a, b, d FROM mcv_lists                                                 |           |              | defined
 public   | stts_1                 | a, b FROM stts_t1                                                      | defined   |              | 
 public   | stts_2                 | a, b FROM stts_t1                                                      | defined   | defined      | 
 public   | stts_3                 | a, b FROM stts_t1                                                      | defined   | defined      | defined
 public   | stts_4                 | b, c FROM stts_t2                                                      | defined   | defined      | defined
 public   | stts_hoge              | col1, col2, col3 FROM stts_t3                                          | defined   | defined      | defined
 stts_s1  | stts_foo               | col1, col2 FROM stts_t3                                                | defined   | defined      | defined
 stts_s2  | stts_yama              | col1, col3 FROM stts_t3                                                |           | defined      | defined
3006
 tststats | priv_test_stats        | a, b FROM priv_test_tbl                                                |           |              | defined
3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026
(12 rows)

\dX stts_?
                       List of extended statistics
 Schema |  Name  |    Definition     | Ndistinct | Dependencies |   MCV   
--------+--------+-------------------+-----------+--------------+---------
 public | stts_1 | a, b FROM stts_t1 | defined   |              | 
 public | stts_2 | a, b FROM stts_t1 | defined   | defined      | 
 public | stts_3 | a, b FROM stts_t1 | defined   | defined      | defined
 public | stts_4 | b, c FROM stts_t2 | defined   | defined      | defined
(4 rows)

\dX *stts_hoge
                               List of extended statistics
 Schema |   Name    |          Definition           | Ndistinct | Dependencies |   MCV   
--------+-----------+-------------------------------+-----------+--------------+---------
 public | stts_hoge | col1, col2, col3 FROM stts_t3 | defined   | defined      | defined
(1 row)

\dX+
3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040
                                                           List of extended statistics
  Schema  |          Name          |                               Definition                               | Ndistinct | Dependencies |   MCV   
----------+------------------------+------------------------------------------------------------------------+-----------+--------------+---------
 public   | func_deps_stat         | ((a * 2)), upper(b), ((c + (1)::numeric)) FROM functional_dependencies |           | defined      | 
 public   | mcv_lists_arrays_stats | a, b, c FROM mcv_lists_arrays                                          |           |              | defined
 public   | mcv_lists_bool_stats   | a, b, c FROM mcv_lists_bool                                            |           |              | defined
 public   | mcv_lists_stats        | a, b, d FROM mcv_lists                                                 |           |              | defined
 public   | stts_1                 | a, b FROM stts_t1                                                      | defined   |              | 
 public   | stts_2                 | a, b FROM stts_t1                                                      | defined   | defined      | 
 public   | stts_3                 | a, b FROM stts_t1                                                      | defined   | defined      | defined
 public   | stts_4                 | b, c FROM stts_t2                                                      | defined   | defined      | defined
 public   | stts_hoge              | col1, col2, col3 FROM stts_t3                                          | defined   | defined      | defined
 stts_s1  | stts_foo               | col1, col2 FROM stts_t3                                                | defined   | defined      | defined
 stts_s2  | stts_yama              | col1, col3 FROM stts_t3                                                |           | defined      | defined
3041
 tststats | priv_test_stats        | a, b FROM priv_test_tbl                                                |           |              | defined
3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067
(12 rows)

\dX+ stts_?
                       List of extended statistics
 Schema |  Name  |    Definition     | Ndistinct | Dependencies |   MCV   
--------+--------+-------------------+-----------+--------------+---------
 public | stts_1 | a, b FROM stts_t1 | defined   |              | 
 public | stts_2 | a, b FROM stts_t1 | defined   | defined      | 
 public | stts_3 | a, b FROM stts_t1 | defined   | defined      | defined
 public | stts_4 | b, c FROM stts_t2 | defined   | defined      | defined
(4 rows)

\dX+ *stts_hoge
                               List of extended statistics
 Schema |   Name    |          Definition           | Ndistinct | Dependencies |   MCV   
--------+-----------+-------------------------------+-----------+--------------+---------
 public | stts_hoge | col1, col2, col3 FROM stts_t3 | defined   | defined      | defined
(1 row)

\dX+ stts_s2.stts_yama
                            List of extended statistics
 Schema  |   Name    |       Definition        | Ndistinct | Dependencies |   MCV   
---------+-----------+-------------------------+-----------+--------------+---------
 stts_s2 | stts_yama | col1, col3 FROM stts_t3 |           | defined      | defined
(1 row)

3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084
set search_path to public, stts_s1;
\dX
                                                          List of extended statistics
 Schema  |          Name          |                               Definition                               | Ndistinct | Dependencies |   MCV   
---------+------------------------+------------------------------------------------------------------------+-----------+--------------+---------
 public  | func_deps_stat         | ((a * 2)), upper(b), ((c + (1)::numeric)) FROM functional_dependencies |           | defined      | 
 public  | mcv_lists_arrays_stats | a, b, c FROM mcv_lists_arrays                                          |           |              | defined
 public  | mcv_lists_bool_stats   | a, b, c FROM mcv_lists_bool                                            |           |              | defined
 public  | mcv_lists_stats        | a, b, d FROM mcv_lists                                                 |           |              | defined
 public  | stts_1                 | a, b FROM stts_t1                                                      | defined   |              | 
 public  | stts_2                 | a, b FROM stts_t1                                                      | defined   | defined      | 
 public  | stts_3                 | a, b FROM stts_t1                                                      | defined   | defined      | defined
 public  | stts_4                 | b, c FROM stts_t2                                                      | defined   | defined      | defined
 public  | stts_hoge              | col1, col2, col3 FROM stts_t3                                          | defined   | defined      | defined
 stts_s1 | stts_foo               | col1, col2 FROM stts_t3                                                | defined   | defined      | defined
(10 rows)

3085 3086 3087
create role regress_stats_ext nosuperuser;
set role regress_stats_ext;
\dX
3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100
                                                          List of extended statistics
 Schema |          Name          |                               Definition                               | Ndistinct | Dependencies |   MCV   
--------+------------------------+------------------------------------------------------------------------+-----------+--------------+---------
 public | func_deps_stat         | ((a * 2)), upper(b), ((c + (1)::numeric)) FROM functional_dependencies |           | defined      | 
 public | mcv_lists_arrays_stats | a, b, c FROM mcv_lists_arrays                                          |           |              | defined
 public | mcv_lists_bool_stats   | a, b, c FROM mcv_lists_bool                                            |           |              | defined
 public | mcv_lists_stats        | a, b, d FROM mcv_lists                                                 |           |              | defined
 public | stts_1                 | a, b FROM stts_t1                                                      | defined   |              | 
 public | stts_2                 | a, b FROM stts_t1                                                      | defined   | defined      | 
 public | stts_3                 | a, b FROM stts_t1                                                      | defined   | defined      | defined
 public | stts_4                 | b, c FROM stts_t2                                                      | defined   | defined      | defined
 public | stts_hoge              | col1, col2, col3 FROM stts_t3                                          | defined   | defined      | defined
(9 rows)
3101 3102 3103 3104 3105

reset role;
drop table stts_t1, stts_t2, stts_t3;
drop schema stts_s1, stts_s2 cascade;
drop user regress_stats_ext;
3106
reset search_path;
3107 3108
-- User with no access
CREATE USER regress_stats_user1;
3109
GRANT USAGE ON SCHEMA tststats TO regress_stats_user1;
3110
SET SESSION AUTHORIZATION regress_stats_user1;
3111
SELECT * FROM tststats.priv_test_tbl; -- Permission denied
3112 3113 3114 3115 3116 3117 3118
ERROR:  permission denied for table priv_test_tbl
-- Attempt to gain access using a leaky operator
CREATE FUNCTION op_leak(int, int) RETURNS bool
    AS 'BEGIN RAISE NOTICE ''op_leak => %, %'', $1, $2; RETURN $1 < $2; END'
    LANGUAGE plpgsql;
CREATE OPERATOR <<< (procedure = op_leak, leftarg = int, rightarg = int,
                     restrict = scalarltsel);
3119
SELECT * FROM tststats.priv_test_tbl WHERE a <<< 0 AND b <<< 0; -- Permission denied
3120
ERROR:  permission denied for table priv_test_tbl
3121
DELETE FROM tststats.priv_test_tbl WHERE a <<< 0 AND b <<< 0; -- Permission denied
3122 3123 3124
ERROR:  permission denied for table priv_test_tbl
-- Grant access via a security barrier view, but hide all data
RESET SESSION AUTHORIZATION;
3125 3126 3127
CREATE VIEW tststats.priv_test_view WITH (security_barrier=true)
    AS SELECT * FROM tststats.priv_test_tbl WHERE false;
GRANT SELECT, DELETE ON tststats.priv_test_view TO regress_stats_user1;
3128 3129
-- Should now have access via the view, but see nothing and leak nothing
SET SESSION AUTHORIZATION regress_stats_user1;
3130
SELECT * FROM tststats.priv_test_view WHERE a <<< 0 AND b <<< 0; -- Should not leak
3131 3132 3133 3134
 a | b 
---+---
(0 rows)

3135
DELETE FROM tststats.priv_test_view WHERE a <<< 0 AND b <<< 0; -- Should not leak
3136 3137
-- Grant table access, but hide all data with RLS
RESET SESSION AUTHORIZATION;
3138 3139
ALTER TABLE tststats.priv_test_tbl ENABLE ROW LEVEL SECURITY;
GRANT SELECT, DELETE ON tststats.priv_test_tbl TO regress_stats_user1;
3140 3141
-- Should now have direct table access, but see nothing and leak nothing
SET SESSION AUTHORIZATION regress_stats_user1;
3142
SELECT * FROM tststats.priv_test_tbl WHERE a <<< 0 AND b <<< 0; -- Should not leak
3143 3144 3145 3146
 a | b 
---+---
(0 rows)

3147
DELETE FROM tststats.priv_test_tbl WHERE a <<< 0 AND b <<< 0; -- Should not leak
3148 3149 3150 3151
-- Tidy up
DROP OPERATOR <<< (int, int);
DROP FUNCTION op_leak(int, int);
RESET SESSION AUTHORIZATION;
3152 3153 3154 3155
DROP SCHEMA tststats CASCADE;
NOTICE:  drop cascades to 2 other objects
DETAIL:  drop cascades to table tststats.priv_test_tbl
drop cascades to view tststats.priv_test_view
3156
DROP USER regress_stats_user1;