-
Notifications
You must be signed in to change notification settings - Fork 5.9k
meta: fix incorrect foreign key field init in table info clone #60103
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
/ok-to-test |
Hi @River2000i. Thanks for your PR. I'm waiting for a pingcap member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the 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. |
Hi @River2000i. 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. |
@River2000i: 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. |
1 similar comment
@River2000i: 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. |
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
pkg/meta/model/table.go
Outdated
@@ -242,7 +242,13 @@ func (t *TableInfo) Clone() *TableInfo { | |||
nt := *t | |||
nt.Columns = make([]*ColumnInfo, len(t.Columns)) | |||
nt.Indices = make([]*IndexInfo, len(t.Indices)) | |||
nt.ForeignKeys = make([]*FKInfo, len(t.ForeignKeys)) | |||
|
|||
if t.ForeignKeys != nil { |
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.
maybe need to set nt.ForeignKeys = nil
if t.ForeignKeys
is []*FKInfo{}
.
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.
default ForeignKeys
is nil, seems it's not necessary check nil
or len(0)
🤔
https://github.com/pingcap/tidb/blob/master/pkg/ddl/create_table.go#L1219-L1224
@GMHDBJD PTAL~
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 worried about if the tableInfo is from the old version. For example, it is from backup or the cluster origin data after tidb upgrade.
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.
ok, we can unify nil
and len(0)
into nil
in clone.
/ok-to-test |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #60103 +/- ##
================================================
+ Coverage 73.1493% 73.8196% +0.6702%
================================================
Files 1706 1707 +1
Lines 471415 473576 +2161
================================================
+ Hits 344837 349592 +4755
+ Misses 105415 102883 -2532
+ Partials 21163 21101 -62
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
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
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: GMHDBJD, Leavrth 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 |
2 similar comments
/retest |
/retest |
In response to a cherrypick label: new pull request created to branch |
What problem does this PR solve?
Issue Number: close #60044
Problem Summary: br restroe table will clone table info before create table, it will meet the incorrect null foreign key field init. Fix incorrect load foreign key init in
tableInfo.Clone()
because ofmake([]*FKInfo, len(t.ForeignKeys))
What changed and how does it work?
Check List
Tests
Side effects
Documentation
Release note
Please refer to Release Notes Language Style Guide to write a quality release note.