Hacker News new | ask | show | jobs
by Loic 3410 days ago
What is the algorithm used to join the tables? Is it a hash join on `id` and `k` or using the fact that the ids are sorted and using a kind of galloping approach?
1 comments

Yes, it is a hash join.
I will need to dig into the implementation of the hash function, it must be a nice read as the speed shows that it is definitely well optimized! Thank you.