-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Make EquiJoinClause fields in IndexJoinNode compatible with protocol #24910
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
zacw7
commented
Apr 11, 2025
aditi-pandit
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zacw7 : Do you have to regenerate presto_protocol for native engine for this as well ? Can you check ?
No we don't have to. It's already part of the protocol. |
This change doesn't introduce anything new. presto/presto-native-execution/presto_cpp/presto_protocol/core/presto_protocol_core.h Lines 1263 to 1266 in 7820553
The protocol is expecting "left" and "right" while in IndexJoinNode they are currently named as "probe" and "index" which would cause issue. |
208301f to
2b328c7
Compare
xiaoxmeng
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zacw7 thanks!
@zacw7 : Thanks for explaining to me. Now your PR title seems more understandable as well. |