Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit aaee550

Browse files
committed
Trying to fix 9.5.1 1C patches
1 parent af0e132 commit aaee550

File tree

1 file changed

+31
-28
lines changed

1 file changed

+31
-28
lines changed

patches/postgresql/9.5.1/65-1c_FULL_95-0.23.1

+31-28
Original file line numberDiff line numberDiff line change
@@ -8946,35 +8946,38 @@ index f96e9ee..e6d8250 100644
89468946
/*
89478947
* prototypes for plan/initsplan.c
89488948
*/
8949-
diff --git a/src/test/regress/expected/create_index.out b/src/test/regress/expected/create_index.out
8950-
index b72e65d..8ca0499 100644
8951-
--- a/src/test/regress/expected/create_index.out
8952-
+++ b/src/test/regress/expected/create_index.out
8953-
@@ -2763,18 +2763,12 @@ DROP TABLE onek_with_null;
8954-
EXPLAIN (COSTS OFF)
8955-
SELECT * FROM tenk1
8956-
WHERE thousand = 42 AND (tenthous = 1 OR tenthous = 3 OR tenthous = 42);
8957-
- QUERY PLAN
8958-
------------------------------------------------------------------------------------------------------------------------------------------
8959-
- Bitmap Heap Scan on tenk1
8960-
- Recheck Cond: (((thousand = 42) AND (tenthous = 1)) OR ((thousand = 42) AND (tenthous = 3)) OR ((thousand = 42) AND (tenthous = 42)))
8961-
- -> BitmapOr
8962-
- -> Bitmap Index Scan on tenk1_thous_tenthous
8963-
- Index Cond: ((thousand = 42) AND (tenthous = 1))
8964-
- -> Bitmap Index Scan on tenk1_thous_tenthous
8965-
- Index Cond: ((thousand = 42) AND (tenthous = 3))
8966-
- -> Bitmap Index Scan on tenk1_thous_tenthous
8967-
- Index Cond: ((thousand = 42) AND (tenthous = 42))
8968-
-(9 rows)
8969-
+ QUERY PLAN
8970-
+-----------------------------------------------------------------
8971-
+ Index Scan using tenk1_thous_tenthous on tenk1
8972-
+ Index Cond: ((thousand = 42) AND (thousand = 42))
8973-
+ Filter: ((tenthous = 1) OR (tenthous = 3) OR (tenthous = 42))
8974-
+(3 rows)
89758949

8976-
SELECT * FROM tenk1
8977-
WHERE thousand = 42 AND (tenthous = 1 OR tenthous = 3 OR tenthous = 42);
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);
8980+
89788981
diff --git a/src/test/regress/expected/select.out b/src/test/regress/expected/select.out
89798982
index c376523..185d177 100644
89808983
--- a/src/test/regress/expected/select.out

0 commit comments

Comments
 (0)