mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
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.
This commit is contained in:
@ -77,7 +77,7 @@ SELECT a, a <-> '199 days 21:21:23' FROM intervaltmp ORDER BY a <-> '199 days 21
|
||||
QUERY PLAN
|
||||
---------------------------------------------------------------------------
|
||||
Limit
|
||||
-> Index Scan using intervalidx on intervaltmp
|
||||
-> Index Only Scan using intervalidx on intervaltmp
|
||||
Order By: (a <-> '@ 199 days 21 hours 21 mins 23 secs'::interval)
|
||||
(3 rows)
|
||||
|
||||
|
Reference in New Issue
Block a user