Y
Hacker News
new
|
ask
|
show
|
jobs
by
twoodfin
3182 days ago
Hopefully Postgres will also use them for joins? That’s the real performance win, since an equijoin is like N * WHERE X = Y.
1 comments
anarazel
3182 days ago
Yes, it will for index nested loops. But e.g. a mergejoin can't really benefit from a hash index, in contrast to a btree index which can provide the ordering without a sort step.
link