pub fn hash_join( left: &[Row], right: &[Row], left_key: usize, right_key: usize, join_type: JoinType, ) -> Result<Vec<Row>>
Hash join implementation for equi-joins.