Github user ioana-delaney commented on the issue:

    https://github.com/apache/spark/pull/17286
  
    @gatorsmile Your example is correct. 
    
    Given A J1 B J2 C:
    • level 0: (A), (B), (C)
    • level 1: {A, B}, ~{A, C}~, {B, C}
    • level 3: {A, B, C}
    
    Given A J1 B J2 C cross join D 
    • level 0: (A), (B), (C), (D)
    • level 1: {A, B}, ~{A, C}~, ~{A, D}~, {B, C}, ~{B, D}~
    • level 3: {A, B, C}, ~{A, B, D}~, ~{A, C, D}~, ~{B, C, D}~
    • level 4: {A, B, C, D}
    
    The presence of join conditions between the outer-inner sets are good 
heuristics to be used during join enumeration.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to