-
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
infoschema: adapt TableByName for query of memory table #54918
infoschema: adapt TableByName for query of memory table #54918
Conversation
Hi @tangenta. Thanks for your PR. PRs from untrusted users cannot be marked as trusted with I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #54918 +/- ##
================================================
+ Coverage 72.6158% 74.6847% +2.0688%
================================================
Files 1565 1565
Lines 440229 442705 +2476
================================================
+ Hits 319676 330633 +10957
+ Misses 100711 91766 -8945
- Partials 19842 20306 +464
Flags with carried forward coverage won't be shown. Click here to find out more.
|
|
@@ -115,6 +115,7 @@ Projection_4 8000.00 root Column#5, Column#10 | |||
└─MemTableScan_6 10000.00 root table:TABLES table_schema:["infoschema__infoschema"] | |||
select engine, DATA_LENGTH from information_schema.tables where lower(table_name) = 't5' and upper(table_schema) = 'INFOSCHEMA__INFOSCHEMA'; | |||
engine DATA_LENGTH | |||
InnoDB 8 |
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.
There is a bug in previous impl.
# TestPartitionsColumn | ||
create table pt1(a int primary key, b int) partition by hash(a) partitions 4; | ||
create table pt2(a int primary key, b int) partition by hash(a) partitions 4; | ||
-- sorted_result |
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.
I'm not familiar with these logic. Can these test make sure the execution does not query full data in TiKV?
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. It only make sure the result is correct. Let me add a manual test about information_schema.partitions
.
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.
rest lgtm
[LGTM Timeline notifier]Timeline:
|
@tangenta: The following test failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: AilinKid, lance6716, tiancaiamao The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/retest |
@tangenta: Cannot trigger testing until a trusted user reviews the PR and leaves an In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
What problem does this PR solve?
Issue Number: ref #50305
Problem Summary:
Read memory tables from
information_schema
is slow whentidb_schema_cache_size
is non-zero.What changed and how does it work?
TableSchemaSelector
to help return the table/schema names specified in predicate.TableByName
for memory tableinformation_schema.tables
.FindTableByPartitionID
forinformation_schema.partitions
.Check List
Tests
Before this PR:
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.