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 <-> '-1890.0' FROM float8tmp ORDER BY a <-> '-1890.0' LIMIT 3;
|
||||
QUERY PLAN
|
||||
-----------------------------------------------------
|
||||
Limit
|
||||
-> Index Scan using float8idx on float8tmp
|
||||
-> Index Only Scan using float8idx on float8tmp
|
||||
Order By: (a <-> (-1890)::double precision)
|
||||
(3 rows)
|
||||
|
||||
|
Reference in New Issue
Block a user