-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Transaction Commit/Rollback returns conn's cached error, if present #1691
base: master
Are you sure you want to change the base?
Transaction Commit/Rollback returns conn's cached error, if present #1691
Conversation
WalkthroughThis pull request makes two distinct updates. First, it adds two new entries to the Changes
Sequence Diagram(s)sequenceDiagram
participant Caller
participant mysqlTx
participant mysqlConn
Caller->>mysqlTx: Call Commit()/Rollback()
alt tx.mc is nil
mysqlTx->>Caller: return ErrInvalidConn
else
alt tx.mc.closed is true
mysqlTx->>mysqlConn: Retrieve error (mc.error())
alt error exists
mysqlTx->>Caller: return specific error (e.g., context.Canceled)
else
mysqlTx->>Caller: return ErrInvalidConn
end
else
mysqlTx->>Caller: proceed with transaction commit/rollback
end
end
Assessment against linked issues
Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
🔇 Additional comments (4)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
Files not reviewed (1)
- AUTHORS: Language not supported
Description
Fix #1690, if a transaction connection has a cached error, return it instead of ErrInvalidConn during Commit/Rollback operations.
Checklist
Summary by CodeRabbit
Chores
Bug Fixes