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

Skip to content

Commit c25ba92

Browse files
committed
pathman_dropped_cols test fixed
1 parent d31988d commit c25ba92

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

expected/pathman_dropped_cols.out

+10-10
Original file line numberDiff line numberDiff line change
@@ -183,22 +183,22 @@ EXECUTE getbyroot(2);
183183
4 | 2 | 10-10-2010 | num_2 | 1 | | | 3
184184
(2 rows)
185185

186-
EXPLAIN EXECUTE getbyroot(2);
187-
QUERY PLAN
188-
--------------------------------------------------------------------------------------------
189-
Custom Scan (RuntimeAppend) (cost=4.17..11.28 rows=3 width=128)
186+
EXPLAIN (COSTS OFF) EXECUTE getbyroot(2);
187+
QUERY PLAN
188+
----------------------------------------------------------
189+
Custom Scan (RuntimeAppend)
190190
Prune by: (root_dict.root_id = $1)
191-
-> Bitmap Heap Scan on root_dict_0 root_dict (cost=4.17..11.28 rows=3 width=128)
191+
-> Bitmap Heap Scan on root_dict_0 root_dict
192192
Recheck Cond: (root_id = $1)
193-
-> Bitmap Index Scan on root_dict_0_root_id_idx (cost=0.00..4.17 rows=3 width=0)
193+
-> Bitmap Index Scan on root_dict_0_root_id_idx
194194
Index Cond: (root_id = $1)
195-
-> Bitmap Heap Scan on root_dict_1 root_dict (cost=4.17..11.28 rows=3 width=128)
195+
-> Bitmap Heap Scan on root_dict_1 root_dict
196196
Recheck Cond: (root_id = $1)
197-
-> Bitmap Index Scan on root_dict_1_root_id_idx (cost=0.00..4.17 rows=3 width=0)
197+
-> Bitmap Index Scan on root_dict_1_root_id_idx
198198
Index Cond: (root_id = $1)
199-
-> Bitmap Heap Scan on root_dict_2 root_dict (cost=4.17..11.28 rows=3 width=128)
199+
-> Bitmap Heap Scan on root_dict_2 root_dict
200200
Recheck Cond: (root_id = $1)
201-
-> Bitmap Index Scan on root_dict_2_root_id_idx (cost=0.00..4.17 rows=3 width=0)
201+
-> Bitmap Index Scan on root_dict_2_root_id_idx
202202
Index Cond: (root_id = $1)
203203
(14 rows)
204204

sql/pathman_dropped_cols.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ EXECUTE getbyroot(2);
9696
-- errors usually start here
9797
EXECUTE getbyroot(2);
9898
EXECUTE getbyroot(2);
99-
EXPLAIN EXECUTE getbyroot(2);
99+
EXPLAIN (COSTS OFF) EXECUTE getbyroot(2);
100100

101101
DEALLOCATE getbyroot;
102102
DROP TABLE root_dict CASCADE;

0 commit comments

Comments
 (0)