-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Improve the performance of NestedLoopApplyExec
#12939
Labels
Comments
/pick-up-challenge |
@miyuri-fox don't have enough score, pick up failed |
You mean no-op? |
/pick-up-challenge |
@ekalinin pick up issue success |
/give-up-challenge |
@ekalinin give up issue success |
NestedLoopApplyExec
NestedLoopApplyExec
|
This was referenced Jun 11, 2020
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Description
NestedLoopApplyExec
is used to calculate the unnested subqueries. Taking this SQL as an example:The above
select
statement is converted to an execution plan which contains anApply
executor:The
Apply_17
operator in the above execution plan is executed by theNestedLoopApplyExec
physical operator. Your goal is to optimize this physical implementation to improve the overall sql execution, reduce at least 100% execution time.Goals:
NestedLoopApplyExec
Non-Goals:
NestedLoopApplyExec
Difficulty
Score
Mentor(s)
Recommended Skills
The text was updated successfully, but these errors were encountered: