-
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
planner: fix wrong stats for physical union scan #14093
planner: fix wrong stats for physical union scan #14093
Conversation
Codecov Report
@@ Coverage Diff @@
## master #14093 +/- ##
===========================================
Coverage ? 80.1538%
===========================================
Files ? 483
Lines ? 121434
Branches ? 0
===========================================
Hits ? 97334
Misses ? 16343
Partials ? 7757 |
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.
LGTM
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.
LGTM
/run-all-tests |
@lzmhhh123 merge failed. |
/merge |
/run-all-tests |
cherry pick to release-2.1 failed |
cherry pick to release-3.0 failed |
What problem does this PR solve?
The stats for PhysicalUnionScan should be its physical child. But we set the stats as its logical child's stats. That's wrong.
What is changed and how it works?
Change the stats dynamically in
findBestTask
.Check List
Tests
Side effects
Related changes