-
Notifications
You must be signed in to change notification settings - Fork 1k
PHOENIX-4791 Propagate projected array elements through hash join #335
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
twdsilva
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.
@geraldss I am not very familiar wit the join code, but the changes look good to me. Can you please squash your commits and attach a patch to the JIRA and click submit so that we get a test run?
| } | ||
| } | ||
|
|
||
| private void dropTable(Connection conn, String table) throws Exception { |
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.
No need to drop table since you are creating creating table with unique names.
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.
Thanks @twdsilva . I submitted the patch.
I left the dropTable() in there if it's harmless. Lmk if it's a problem.
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.
The dropTable() just slows the test down. We prevent too many tables from being created by starting a new minicluster after a certain threshold (see .BaseTest.tearDownMiniClusterIfBeyondThreshold() )
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.
Thanks for pursuing a fix for this issue, @geraldss. If you could please submit a new patch without the dropTable() call, we'd appreciate it.
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.
Hi @twdsilva @JamesRTaylor, done. Thanks for the review.
No description provided.