Skip to content

fix(plan): keep index row id for replace single-index path - #24580

Merged
mergify[bot] merged 3 commits into
matrixorigin:mainfrom
ck89119:fix-plan-keep-index-rowid
May 26, 2026
Merged

fix(plan): keep index row id for replace single-index path#24580
mergify[bot] merged 3 commits into
matrixorigin:mainfrom
ck89119:fix-plan-keep-index-rowid

Conversation

@ck89119

@ck89119 ck89119 commented May 25, 2026

Copy link
Copy Markdown
Contributor

What type of PR is this?

  • API-change
  • BUG
  • Improvement
  • Documentation
  • Feature
  • Test and CI
  • Code Refactoring

Which issue(s) this PR fixes:

issue #23946

What this PR does / why we need it:

In the REPLACE merged-main-scan path (real primary key + non-unique
single-column secondary index), the planner builds the index table's
DeleteCols old Row_ID by looking it up in oldColName2Idx. The
lookup key could be missing, silently falling back to a zero-value
ColRef{RelPos: 0, ColPos: 0} instead of the index table's own
Row_ID.

This PR:

  • Initializes the index table Name2ColIndex and fixes the lookup to
    use a consistent key with an ok check, so a missing key returns an
    internal error instead of silently producing [0,0].
  • Ensures the final projection reads the index table's own Row_ID
    obtained from the index-table LEFT JOIN.
  • Adds regression test
    TestReplaceNonUniqueSingleIndexDeleteUsesIndexRowID covering the
    real-primary-key + non-unique single-column index scenario.

@ck89119
ck89119 requested review from aunjgr and ouyuanning as code owners May 25, 2026 14:18
@qodo-code-review

Copy link
Copy Markdown

Qodo reviews are paused for this user.

Troubleshooting steps vary by plan Learn more →

On a Teams plan?
Reviews resume once this user has a paid seat and their Git account is linked in Qodo.
Link Git account →

Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center?
These require an Enterprise plan - Contact us
Contact us →

@XuPeng-SH XuPeng-SH left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Reviewed the current head f0952b8 from multiple angles. The fix addresses the real planner bug in the REPLACE single-index path: index-table Name2ColIndex is now initialized before the old-rowid / lookup-column wiring, and the final old-column lookups no longer silently collapse to a zero-value ColRef when a key is missing. I also checked the surrounding replace path and the new regression test for the real-PK + non-unique single-column secondary-index case; I did not find a remaining blocking issue in the current patch.

@mergify mergify Bot added the queued label May 26, 2026
@mergify

mergify Bot commented May 26, 2026

Copy link
Copy Markdown
Contributor

Merge Queue Status

  • Entered queue2026-05-26 08:43 UTC · Rule: main
  • Checks passed · in-place
  • Merged2026-05-26 10:43 UTC · at e39676ab57d46ed20a94f8b60e967dbfc0e00f6e · squash

This pull request spent 1 hour 59 minutes 22 seconds in the queue, including 1 hour 58 minutes 24 seconds running CI.

Required conditions to merge
  • #approved-reviews-by >= 1 [🛡 GitHub branch protection]
  • #changes-requested-reviews-by = 0 [🛡 GitHub branch protection]
  • #review-threads-unresolved = 0 [🛡 GitHub branch protection]
  • github-review-decision = APPROVED [🛡 GitHub branch protection]
  • any of [🛡 GitHub branch protection]:
    • check-success = Matrixone Compose CI / multi cn e2e bvt test docker compose(PESSIMISTIC)
    • check-neutral = Matrixone Compose CI / multi cn e2e bvt test docker compose(PESSIMISTIC)
    • check-skipped = Matrixone Compose CI / multi cn e2e bvt test docker compose(PESSIMISTIC)
  • any of [🛡 GitHub branch protection]:
    • check-success = Matrixone Standlone CI / Multi-CN e2e BVT Test on Linux/x64(LAUNCH, PROXY)
    • check-neutral = Matrixone Standlone CI / Multi-CN e2e BVT Test on Linux/x64(LAUNCH, PROXY)
    • check-skipped = Matrixone Standlone CI / Multi-CN e2e BVT Test on Linux/x64(LAUNCH, PROXY)
  • any of [🛡 GitHub branch protection]:
    • check-success = Matrixone Standlone CI / e2e BVT Test on Linux/x64(LAUNCH, PESSIMISTIC)
    • check-neutral = Matrixone Standlone CI / e2e BVT Test on Linux/x64(LAUNCH, PESSIMISTIC)
    • check-skipped = Matrixone Standlone CI / e2e BVT Test on Linux/x64(LAUNCH, PESSIMISTIC)
  • any of [🛡 GitHub branch protection]:
    • check-success = Matrixone CI / SCA Test on Ubuntu/x86
    • check-neutral = Matrixone CI / SCA Test on Ubuntu/x86
    • check-skipped = Matrixone CI / SCA Test on Ubuntu/x86
  • any of [🛡 GitHub branch protection]:
    • check-success = Matrixone CI / UT Test on Ubuntu/x86
    • check-neutral = Matrixone CI / UT Test on Ubuntu/x86
    • check-skipped = Matrixone CI / UT Test on Ubuntu/x86
  • any of [🛡 GitHub branch protection]:
    • check-success = Matrixone Compose CI / multi cn e2e bvt test docker compose(Optimistic/PUSH)
    • check-neutral = Matrixone Compose CI / multi cn e2e bvt test docker compose(Optimistic/PUSH)
    • check-skipped = Matrixone Compose CI / multi cn e2e bvt test docker compose(Optimistic/PUSH)
  • any of [🛡 GitHub branch protection]:
    • check-success = Matrixone Standlone CI / e2e BVT Test on Linux/x64(LAUNCH,Optimistic)
    • check-neutral = Matrixone Standlone CI / e2e BVT Test on Linux/x64(LAUNCH,Optimistic)
    • check-skipped = Matrixone Standlone CI / e2e BVT Test on Linux/x64(LAUNCH,Optimistic)
  • any of [🛡 GitHub branch protection]:
    • check-success = Matrixone Upgrade CI / Compatibility Test With Target on Linux/x64(LAUNCH)
    • check-neutral = Matrixone Upgrade CI / Compatibility Test With Target on Linux/x64(LAUNCH)
    • check-skipped = Matrixone Upgrade CI / Compatibility Test With Target on Linux/x64(LAUNCH)
  • any of [🛡 GitHub branch protection]:
    • check-success = Matrixone Utils CI / Coverage
    • check-neutral = Matrixone Utils CI / Coverage
    • check-skipped = Matrixone Utils CI / Coverage

@mergify
mergify Bot merged commit a218298 into matrixorigin:main May 26, 2026
23 of 24 checks passed
@ck89119
ck89119 deleted the fix-plan-keep-index-rowid branch May 26, 2026 10:45
@mergify mergify Bot removed the queued label May 26, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

kind/bug Something isn't working size/M Denotes a PR that changes [100,499] lines

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants