@@ -8945,38 +8945,6 @@ index f96e9ee..e6d8250 100644
89458945+extern Node * fix_indexqual_operand(Node *node, IndexOptInfo *index, int indexcol);
89468946 /*
89478947 * prototypes for plan/initsplan.c
8948- */
8949-
8950- diff --git a/src/test/regress/expected/create_index.out b/src/test/regress/expected/create_index.out
8951- index b72e65d..6bb4c97 100644
8952- --- a/src/test/regress/expected/create_index.out
8953- +++ b/src/test/regress/expected/create_index.out
8954- @@ -2763,18 +2763,13 @@ DROP TABLE onek_with_null;
8955- EXPLAIN (COSTS OFF)
8956- SELECT * FROM tenk1
8957- WHERE thousand = 42 AND (tenthous = 1 OR tenthous = 3 OR tenthous = 42);
8958- - QUERY PLAN
8959- ------------------------------------------------------------------------------------------------------------------------------------------
8960- - Bitmap Heap Scan on tenk1
8961- - Recheck Cond: (((thousand = 42) AND (tenthous = 1)) OR ((thousand = 42) AND (tenthous = 3)) OR ((thousand = 42) AND (tenthous = 42)))
8962- - -> BitmapOr
8963- - -> Bitmap Index Scan on tenk1_thous_tenthous
8964- - Index Cond: ((thousand = 42) AND (tenthous = 1))
8965- - -> Bitmap Index Scan on tenk1_thous_tenthous
8966- - Index Cond: ((thousand = 42) AND (tenthous = 3))
8967- - -> Bitmap Index Scan on tenk1_thous_tenthous
8968- - Index Cond: ((thousand = 42) AND (tenthous = 42))
8969- -(9 rows)
8970- +
8971- + QUERY PLAN
8972- +--------------------------------------------------------------------------
8973- + Index Scan using tenk1_thous_tenthous on tenk1
8974- + Index Cond: ((thousand = 42) AND (thousand = 42))
8975- + Filter: ((tenthous = 1) OR (tenthous = 3) OR (tenthous = 42))
8976- +(3 rows)
8977-
8978- SELECT * FROM tenk1
8979- WHERE thousand = 42 AND (tenthous = 1 OR tenthous = 3 OR tenthous = 42);
89808948
89818949diff --git a/src/test/regress/expected/select.out b/src/test/regress/expected/select.out
89828950index c376523..185d177 100644
0 commit comments