Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fix diff in the test moc100 on PG16#57

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
vitcpp merged 1 commit intopostgrespro:masterfromvitcpp:fix-test-moc100-pg16
Aug 26, 2023
Merged
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletionsexpected/moc100_4.out
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -72,10 +72,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
SELECT * FROM moc100 WHERE coverage && '4/0';
QUERY PLAN
--------------------------------------------------------------------------------
Seq Scan on moc100 (cost=0.00..6.26 rows=1 width=96) (actual rows=35 loops=1)
Seq Scan on moc100 (cost=0.00..7.26 rows=1 width=96) (actual rows=35 loops=1)
Filter: (coverage && '4/0'::smoc)
Rows Removed by Filter: 66
Buffers: shared hit=114
Buffers: shared hit=115
Planning:
Buffers: shared hit=1
(6 rows)
Expand All@@ -84,10 +84,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
SELECT * FROM moc100 WHERE coverage = '0/0-11';
QUERY PLAN
--------------------------------------------------------------------------------
Seq Scan on moc100 (cost=0.00..6.26 rows=1 width=96) (actual rows=23 loops=1)
Seq Scan on moc100 (cost=0.00..7.26 rows=1 width=96) (actual rows=23 loops=1)
Filter: (coverage = '0/0-11'::smoc)
Rows Removed by Filter: 78
Buffers: shared hit=59
Buffers: shared hit=60
Planning:
Buffers: shared hit=4
(6 rows)
Expand All@@ -96,10 +96,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
SELECT * FROM moc100 WHERE coverage = '6/43225,43227';
QUERY PLAN
-------------------------------------------------------------------------------
Seq Scan on moc100 (cost=0.00..6.26 rows=1 width=96) (actual rows=1 loops=1)
Seq Scan on moc100 (cost=0.00..7.26 rows=1 width=96) (actual rows=1 loops=1)
Filter: (coverage = '6/43225 43227'::smoc)
Rows Removed by Filter: 100
Buffers: shared hit=59
Buffers: shared hit=60
Planning:
Buffers: shared hit=1
(6 rows)
Expand All@@ -108,10 +108,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
SELECT * FROM moc100 WHERE coverage = '0/';
QUERY PLAN
-------------------------------------------------------------------------------
Seq Scan on moc100 (cost=0.00..6.26 rows=1 width=96) (actual rows=1 loops=1)
Seq Scan on moc100 (cost=0.00..7.26 rows=1 width=96) (actual rows=1 loops=1)
Filter: (coverage = '0/'::smoc)
Rows Removed by Filter: 100
Buffers: shared hit=59
Buffers: shared hit=60
Planning:
Buffers: shared hit=1
(6 rows)
Expand All@@ -120,10 +120,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
SELECT * FROM moc100 WHERE coverage <> '0/0-11';
QUERY PLAN
----------------------------------------------------------------------------------
Seq Scan on moc100 (cost=0.00..6.26 rows=100 width=96) (actual rows=78 loops=1)
Seq Scan on moc100 (cost=0.00..7.26 rows=100 width=96) (actual rows=78 loops=1)
Filter: (coverage <> '0/0-11'::smoc)
Rows Removed by Filter: 23
Buffers: shared hit=59
Buffers: shared hit=60
Planning:
Buffers: shared hit=4
(6 rows)
Expand All@@ -132,10 +132,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
SELECT * FROM moc100 WHERE coverage <> '6/43225,43227';
QUERY PLAN
-----------------------------------------------------------------------------------
Seq Scan on moc100 (cost=0.00..6.26 rows=100 width=96) (actual rows=100 loops=1)
Seq Scan on moc100 (cost=0.00..7.26 rows=100 width=96) (actual rows=100 loops=1)
Filter: (coverage <> '6/43225 43227'::smoc)
Rows Removed by Filter: 1
Buffers: shared hit=59
Buffers: shared hit=60
Planning:
Buffers: shared hit=1
(6 rows)
Expand All@@ -144,10 +144,10 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
SELECT * FROM moc100 WHERE coverage <> '0/';
QUERY PLAN
-----------------------------------------------------------------------------------
Seq Scan on moc100 (cost=0.00..6.26 rows=100 width=96) (actual rows=100 loops=1)
Seq Scan on moc100 (cost=0.00..7.26 rows=100 width=96) (actual rows=100 loops=1)
Filter: (coverage <> '0/'::smoc)
Rows Removed by Filter: 1
Buffers: shared hit=59
Buffers: shared hit=60
Planning:
Buffers: shared hit=1
(6 rows)
Expand DownExpand Up@@ -254,7 +254,7 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
SELECT * FROM moc100 WHERE coverage <> '0/0-11';
QUERY PLAN
-------------------------------------------------------------------------------------------------------------------
Bitmap Heap Scan on moc100 (cost=106888.23..106894.48 rows=100 width=96) (actual rows=78 loops=1)
Bitmap Heap Scan on moc100 (cost=106888.23..106895.48 rows=100 width=96) (actual rows=78 loops=1)
Recheck Cond: (coverage <> '0/0-11'::smoc)
Rows Removed by Index Recheck: 23
Heap Blocks: exact=5
Expand All@@ -273,7 +273,7 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
SELECT * FROM moc100 WHERE coverage <> '6/43225,43227';
QUERY PLAN
-------------------------------------------------------------------------------------------------------------------
Bitmap Heap Scan on moc100 (cost=106888.23..106894.48 rows=100 width=96) (actual rows=100 loops=1)
Bitmap Heap Scan on moc100 (cost=106888.23..106895.48 rows=100 width=96) (actual rows=100 loops=1)
Recheck Cond: (coverage <> '6/43225 43227'::smoc)
Rows Removed by Index Recheck: 1
Heap Blocks: exact=5
Expand All@@ -292,7 +292,7 @@ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
SELECT * FROM moc100 WHERE coverage <> '0/';
QUERY PLAN
-------------------------------------------------------------------------------------------------------------------
Bitmap Heap Scan on moc100 (cost=106888.23..106894.48 rows=100 width=96) (actual rows=100 loops=1)
Bitmap Heap Scan on moc100 (cost=106888.23..106895.48 rows=100 width=96) (actual rows=100 loops=1)
Recheck Cond: (coverage <> '0/'::smoc)
Rows Removed by Index Recheck: 1
Heap Blocks: exact=5
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp