Skip to content

Commit d0afcdb

Browse files
authored
Merge pull request #57 from vitcpp/fix-test-moc100-pg16
Fix diff in the test moc100 on PG16
2 parents 8ce614b + 2116310 commit d0afcdb

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

Diff for: expected/moc100_4.out

+17-17
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
7272
SELECT * FROM moc100 WHERE coverage && '4/0';
7373
QUERY PLAN
7474
--------------------------------------------------------------------------------
75-
Seq Scan on moc100 (cost=0.00..6.26 rows=1 width=96) (actual rows=35 loops=1)
75+
Seq Scan on moc100 (cost=0.00..7.26 rows=1 width=96) (actual rows=35 loops=1)
7676
Filter: (coverage && '4/0'::smoc)
7777
Rows Removed by Filter: 66
78-
Buffers: shared hit=114
78+
Buffers: shared hit=115
7979
Planning:
8080
Buffers: shared hit=1
8181
(6 rows)
@@ -84,10 +84,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
8484
SELECT * FROM moc100 WHERE coverage = '0/0-11';
8585
QUERY PLAN
8686
--------------------------------------------------------------------------------
87-
Seq Scan on moc100 (cost=0.00..6.26 rows=1 width=96) (actual rows=23 loops=1)
87+
Seq Scan on moc100 (cost=0.00..7.26 rows=1 width=96) (actual rows=23 loops=1)
8888
Filter: (coverage = '0/0-11'::smoc)
8989
Rows Removed by Filter: 78
90-
Buffers: shared hit=59
90+
Buffers: shared hit=60
9191
Planning:
9292
Buffers: shared hit=4
9393
(6 rows)
@@ -96,10 +96,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
9696
SELECT * FROM moc100 WHERE coverage = '6/43225,43227';
9797
QUERY PLAN
9898
-------------------------------------------------------------------------------
99-
Seq Scan on moc100 (cost=0.00..6.26 rows=1 width=96) (actual rows=1 loops=1)
99+
Seq Scan on moc100 (cost=0.00..7.26 rows=1 width=96) (actual rows=1 loops=1)
100100
Filter: (coverage = '6/43225 43227'::smoc)
101101
Rows Removed by Filter: 100
102-
Buffers: shared hit=59
102+
Buffers: shared hit=60
103103
Planning:
104104
Buffers: shared hit=1
105105
(6 rows)
@@ -108,10 +108,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
108108
SELECT * FROM moc100 WHERE coverage = '0/';
109109
QUERY PLAN
110110
-------------------------------------------------------------------------------
111-
Seq Scan on moc100 (cost=0.00..6.26 rows=1 width=96) (actual rows=1 loops=1)
111+
Seq Scan on moc100 (cost=0.00..7.26 rows=1 width=96) (actual rows=1 loops=1)
112112
Filter: (coverage = '0/'::smoc)
113113
Rows Removed by Filter: 100
114-
Buffers: shared hit=59
114+
Buffers: shared hit=60
115115
Planning:
116116
Buffers: shared hit=1
117117
(6 rows)
@@ -120,10 +120,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
120120
SELECT * FROM moc100 WHERE coverage <> '0/0-11';
121121
QUERY PLAN
122122
----------------------------------------------------------------------------------
123-
Seq Scan on moc100 (cost=0.00..6.26 rows=100 width=96) (actual rows=78 loops=1)
123+
Seq Scan on moc100 (cost=0.00..7.26 rows=100 width=96) (actual rows=78 loops=1)
124124
Filter: (coverage <> '0/0-11'::smoc)
125125
Rows Removed by Filter: 23
126-
Buffers: shared hit=59
126+
Buffers: shared hit=60
127127
Planning:
128128
Buffers: shared hit=4
129129
(6 rows)
@@ -132,10 +132,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
132132
SELECT * FROM moc100 WHERE coverage <> '6/43225,43227';
133133
QUERY PLAN
134134
-----------------------------------------------------------------------------------
135-
Seq Scan on moc100 (cost=0.00..6.26 rows=100 width=96) (actual rows=100 loops=1)
135+
Seq Scan on moc100 (cost=0.00..7.26 rows=100 width=96) (actual rows=100 loops=1)
136136
Filter: (coverage <> '6/43225 43227'::smoc)
137137
Rows Removed by Filter: 1
138-
Buffers: shared hit=59
138+
Buffers: shared hit=60
139139
Planning:
140140
Buffers: shared hit=1
141141
(6 rows)
@@ -144,10 +144,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
144144
SELECT * FROM moc100 WHERE coverage <> '0/';
145145
QUERY PLAN
146146
-----------------------------------------------------------------------------------
147-
Seq Scan on moc100 (cost=0.00..6.26 rows=100 width=96) (actual rows=100 loops=1)
147+
Seq Scan on moc100 (cost=0.00..7.26 rows=100 width=96) (actual rows=100 loops=1)
148148
Filter: (coverage <> '0/'::smoc)
149149
Rows Removed by Filter: 1
150-
Buffers: shared hit=59
150+
Buffers: shared hit=60
151151
Planning:
152152
Buffers: shared hit=1
153153
(6 rows)
@@ -254,7 +254,7 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
254254
SELECT * FROM moc100 WHERE coverage <> '0/0-11';
255255
QUERY PLAN
256256
-------------------------------------------------------------------------------------------------------------------
257-
Bitmap Heap Scan on moc100 (cost=106888.23..106894.48 rows=100 width=96) (actual rows=78 loops=1)
257+
Bitmap Heap Scan on moc100 (cost=106888.23..106895.48 rows=100 width=96) (actual rows=78 loops=1)
258258
Recheck Cond: (coverage <> '0/0-11'::smoc)
259259
Rows Removed by Index Recheck: 23
260260
Heap Blocks: exact=5
@@ -273,7 +273,7 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
273273
SELECT * FROM moc100 WHERE coverage <> '6/43225,43227';
274274
QUERY PLAN
275275
-------------------------------------------------------------------------------------------------------------------
276-
Bitmap Heap Scan on moc100 (cost=106888.23..106894.48 rows=100 width=96) (actual rows=100 loops=1)
276+
Bitmap Heap Scan on moc100 (cost=106888.23..106895.48 rows=100 width=96) (actual rows=100 loops=1)
277277
Recheck Cond: (coverage <> '6/43225 43227'::smoc)
278278
Rows Removed by Index Recheck: 1
279279
Heap Blocks: exact=5
@@ -292,7 +292,7 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
292292
SELECT * FROM moc100 WHERE coverage <> '0/';
293293
QUERY PLAN
294294
-------------------------------------------------------------------------------------------------------------------
295-
Bitmap Heap Scan on moc100 (cost=106888.23..106894.48 rows=100 width=96) (actual rows=100 loops=1)
295+
Bitmap Heap Scan on moc100 (cost=106888.23..106895.48 rows=100 width=96) (actual rows=100 loops=1)
296296
Recheck Cond: (coverage <> '0/'::smoc)
297297
Rows Removed by Index Recheck: 1
298298
Heap Blocks: exact=5

0 commit comments

Comments
 (0)