From b687a719c7b5a308525aa61b1bd1eb16cc1fb11b Mon Sep 17 00:00:00 2001 From: Tomas Vondra Date: Mon, 17 Jun 2024 16:58:05 +0200 Subject: [PATCH v20240617 47/56] review --- src/test/regress/expected/stats_ext.out | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/regress/expected/stats_ext.out b/src/test/regress/expected/stats_ext.out index fd8df01f309..682d4ea176a 100644 --- a/src/test/regress/expected/stats_ext.out +++ b/src/test/regress/expected/stats_ext.out @@ -3206,6 +3206,7 @@ SELECT * FROM check_estimated_rows('select * from join_test_1 j1 join join_test_ 50000 | 50000 (1 row) +-- FIXME seems should have been in the preceding patch? -- test join with system column var, but the ext statistics can't be built in system attribute AND extended statistics -- must covers all the join columns, so the following 2 statements can use extended statistics for join. SELECT * FROM check_estimated_rows('select * from join_test_1 j1 join join_test_2 j2 on ((j1.a + 1 = j2.a + 1) and (j1.b = j2.b)) and j1.cmin = j2.cmin'); -- 2.45.2