-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
*: Refine Explain's format. #15507
*: Refine Explain's format. #15507
Conversation
Update local
Merge latest PR.
Merge Update
Merge PR
merge latest PR
Merge latest pr
*: show build and probe side for join and index lookup related operat…
Merge latest pr
Merge New PR
merge pr
/run-all-tests tidb-test=pr/1007 |
1 similar comment
/run-all-tests tidb-test=pr/1007 |
/run-all-tests tidb-test=pr/1007 |
1 similar comment
/run-all-tests tidb-test=pr/1007 |
/run-all-tests tidb-test=pr/1007 |
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 tidb-test=pr/1007 |
/run-unit-test tidb-test=pr/1007 |
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 tidb-test=pr/1007 |
/merge |
/run-all-tests |
What problem does this PR solve?
explain
result #10136_0
in the root operator. #14854Explain
's format and content. #15347Problem Summary:
EXPLAIN
andEXPLAIN ANALYZE
, add columnaccess object
after column task, it includes table name or index name.EXPLAIN
andEXPLAIN ANALYZE
columns.EXPLAIN
.EXPLAIN
._0
bug.HashLeftJoin
andHashRightJoin
toHashJoin
.What is changed and how it works?
Add new interface
dataAccesser
, which means it can access underlying data.PhysicalTableScan
,PhysicalIndexScan
,PointGetPlan
,BatchPointScan
andPhysicalMemTable
implements it, so that they can get their AccessObject.Check List
Tests
Release note
EXPLAIN
andEXPLAIN ANALYZE
, add columnaccess object
after column task, it includes table name or index name.EXPLAIN
andEXPLAIN ANALYZE
columns.EXPLAIN
.EXPLAIN
._0
bug.HashLeftJoin
andHashRightJoin
toHashJoin
.