-
Notifications
You must be signed in to change notification settings - Fork 8.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
bugfix: don't remove GlobalSession when retry rollback or retry commit timeout #5299
Conversation
1. Correct the comment on MySQLUndoUpdateExecutor#UPDATE_SQL_TEMPLATE (apache#5297) 2. Do not remove GlobalSession when retry rollback or retry commit timeout (apache#5293)
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@
## develop #5299 +/- ##
=============================================
- Coverage 48.83% 48.80% -0.04%
+ Complexity 4182 4178 -4
=============================================
Files 743 743
Lines 26626 26622 -4
Branches 3333 3333
=============================================
- Hits 13002 12992 -10
- Misses 12219 12225 +6
Partials 1405 1405
|
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
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.
add change in develop.md not inn 1.6.1.md
@@ -37,7 +37,7 @@ | |||
public class MySQLUndoUpdateExecutor extends AbstractUndoExecutor { | |||
|
|||
/** | |||
* UPDATE a SET x = ?, y = ?, z = ? WHERE pk1 in (?) pk2 in (?) | |||
* UPDATE a SET x = ?, y = ?, z = ? WHERE pk1 =? and pk2 =? |
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 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.
This will be fix in the next pr.
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
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
Ⅰ. Describe what this PR did
Ⅱ. Does this pull request fix one issue?
fixes #5297
fixes #5295