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 <-> '464571291354841' FROM int8tmp ORDER BY a <-> '464571291354841'
|
||||
QUERY PLAN
|
||||
---------------------------------------------------
|
||||
Limit
|
||||
-> Index Scan using int8idx on int8tmp
|
||||
-> Index Only Scan using int8idx on int8tmp
|
||||
Order By: (a <-> 464571291354841::bigint)
|
||||
(3 rows)
|
||||
|
||||
|
Reference in New Issue
Block a user