Hacker News new | ask | show | jobs
by Scene_Cast2 792 days ago
One example is that in Presto, joins assume that left (IIRC) table is the big one you stream, and the right one is the small one you hash. One of the newer features was that in some cases, the optimizer is able to ignore the SQL order and correctly pick which table to hash and which one to stream.
1 comments

Isn't that just basic table/index statistics to know which table is the smallest?
Not if you're joining on a filtered table or a result of another join.