Skip to content
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

ddl: fix the wrong logic to assert whether table has foreign key #51808

Merged

Conversation

YangKeao
Copy link
Member

@YangKeao YangKeao commented Mar 15, 2024

What problem does this PR solve?

Issue Number: close #51807, close #51762

Problem Summary:

If the foreign key is an empty slice, the condition nt.ForeignKeys != nil will meet. It would be better to assert it with len(nt.ForeignKeys) > 0

What changed and how does it work?

Change nt.ForeignKeys != nil to len(nt.ForeignKeys) > 0.

Actually, I wonder whether there are other similar issues in TiDB. It's very likely to have bugs in similar pattern 🤔 .

Check List

Tests

  • Unit test
  • Integration test
  • Manual test (add detailed scripts or steps below)
  • No need to test
    • I checked and no code files have been changed.

Side effects

  • Performance regression: Consumes more CPU
  • Performance regression: Consumes more Memory
  • Breaking backward compatibility

Documentation

  • Affects user behaviors
  • Contains syntax changes
  • Contains variable changes
  • Contains experimental features
  • Changes MySQL compatibility

Release note

None

Signed-off-by: Yang Keao <yangkeao@chunibyo.icu>
@YangKeao YangKeao requested review from bb7133 and mjonss March 15, 2024 04:31
@ti-chi-bot ti-chi-bot bot added do-not-merge/needs-triage-completed release-note-none size/S Denotes a PR that changes 10-29 lines, ignoring generated files. and removed do-not-merge/needs-triage-completed labels Mar 15, 2024
Copy link

codecov bot commented Mar 15, 2024

Codecov Report

Merging #51808 (e17d64e) into master (5b8185f) will increase coverage by 2.0828%.
Report is 8 commits behind head on master.
The diff coverage is 100.0000%.

Additional details and impacted files
@@               Coverage Diff                @@
##             master     #51808        +/-   ##
================================================
+ Coverage   70.7345%   72.8173%   +2.0827%     
================================================
  Files          1476       1476                
  Lines        437888     437926        +38     
================================================
+ Hits         309738     318886      +9148     
+ Misses       108742      98980      -9762     
- Partials      19408      20060       +652     
Flag Coverage Δ
integration 48.8771% <100.0000%> (?)
unit 70.4976% <0.0000%> (-0.0454%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Components Coverage Δ
dumpling 53.9957% <ø> (ø)
parser ∅ <ø> (∅)
br 51.4616% <ø> (+5.5449%) ⬆️

Copy link
Member

@bb7133 bb7133 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Copy link

ti-chi-bot bot commented Mar 15, 2024

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: bb7133, ywqzzy

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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

Copy link

ti-chi-bot bot commented Mar 15, 2024

[LGTM Timeline notifier]

Timeline:

  • 2024-03-15 05:51:33.824154429 +0000 UTC m=+1010320.846400818: ☑️ agreed by ywqzzy.
  • 2024-03-15 05:54:29.382235539 +0000 UTC m=+1010496.404481926: ☑️ agreed by bb7133.

@ti-chi-bot ti-chi-bot bot merged commit 323858c into pingcap:master Mar 15, 2024
23 checks passed
ti-chi-bot pushed a commit to ti-chi-bot/tidb that referenced this pull request Mar 15, 2024
Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
ti-chi-bot pushed a commit to ti-chi-bot/tidb that referenced this pull request Mar 15, 2024
Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
@ti-chi-bot
Copy link
Member

In response to a cherrypick label: new pull request created to branch release-7.1: #51821.

@ti-chi-bot
Copy link
Member

In response to a cherrypick label: new pull request created to branch release-7.5: #51822.

@ti-chi-bot
Copy link
Member

In response to a cherrypick label: new pull request created to branch release-6.5: #51831.

ti-chi-bot pushed a commit to ti-chi-bot/tidb that referenced this pull request Mar 15, 2024
Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
4 participants