diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-03-27 23:35:16 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-03-27 23:35:16 +0200 |
commit | e09b48316c22fce727bce3c89fa64fc627787e6a (patch) | |
tree | 107a22f368efd340c6f545f0e6b7130b5063aa08 /contrib/btree_gist/sql/macaddr.sql | |
parent | 735cd6128a6a401671126443a9af4324932a38d6 (diff) |
Add index-only scan support to btree_gist.
inet, cidr, and timetz indexes still cannot support index-only scans,
because they don't store the original unmodified value in the index, but a
derived approximate value.
Diffstat (limited to 'contrib/btree_gist/sql/macaddr.sql')
-rw-r--r-- | contrib/btree_gist/sql/macaddr.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/btree_gist/sql/macaddr.sql b/contrib/btree_gist/sql/macaddr.sql index d9c54b29301..85c271f7ce3 100644 --- a/contrib/btree_gist/sql/macaddr.sql +++ b/contrib/btree_gist/sql/macaddr.sql @@ -29,3 +29,9 @@ SELECT count(*) FROM macaddrtmp WHERE a = '22:00:5c:e5:9b:0d'::macaddr; SELECT count(*) FROM macaddrtmp WHERE a >= '22:00:5c:e5:9b:0d'::macaddr; SELECT count(*) FROM macaddrtmp WHERE a > '22:00:5c:e5:9b:0d'::macaddr; + +-- Test index-only scans +SET enable_bitmapscan=off; +EXPLAIN (COSTS OFF) +SELECT * FROM macaddrtmp WHERE a < '02:03:04:05:06:07'::macaddr; +SELECT * FROM macaddrtmp WHERE a < '02:03:04:05:06:07'::macaddr; |