westonpace commented on issue #34820:
URL: https://github.com/apache/arrow/issues/34820#issuecomment-1501932375

   Instead of `ds %>% left_join(dep,by=c("DR"="DEP"))` can you do `dep %>% 
right_join(ds,by=c("DEP"="DR"))`?
   
   Typically you want the small table to be the build side (in Acero the second 
input is the build side).  From the plan it appears that `ds` is the build side 
which is bad.  Switching from a left to a right join should swap sides.  If it 
still doesn't work can you share the resulting `explain()` with the right join?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to