File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,16 @@ SELECT ivoid FROM moc100 WHERE coverage && '4/0' ORDER BY ivoid;
4545 ivo://vopdc.obspm/luth/hess
4646(35 rows)
4747
48+ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
49+ SELECT * FROM moc100 WHERE coverage && '0/';
50+ QUERY PLAN
51+ ----------------------------------------------------------------------------------------------------------
52+ Bitmap Heap Scan on moc100 (cost=0.00..4.01 rows=1 width=96) (actual rows=0 loops=1)
53+ Recheck Cond: (coverage && '0/'::smoc)
54+ -> Bitmap Index Scan on moc100_coverage_idx (cost=0.00..0.00 rows=1 width=0) (actual rows=0 loops=1)
55+ Index Cond: (coverage && '0/'::smoc)
56+ (4 rows)
57+
4858EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
4959 SELECT * FROM moc100 WHERE coverage && '4/0';
5060 QUERY PLAN
Original file line number Diff line number Diff line change @@ -111,6 +111,9 @@ CREATE INDEX ON moc100 USING GIN (coverage);
111111
112112SELECT ivoid FROM moc100 WHERE coverage && ' 4/0' ORDER BY ivoid;
113113
114+ EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
115+ SELECT * FROM moc100 WHERE coverage && ' 0/' ;
116+
114117EXPLAIN (ANALYZE, BUFFERS, TIMING OFF, SUMMARY OFF)
115118 SELECT * FROM moc100 WHERE coverage && ' 4/0' ;
116119
You can’t perform that action at this time.
0 commit comments