-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
plan: use point get plan for UPDATE statement #7586
Merged
Merged
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
2d804ea
plan: use point get plan for UPDATE statement
coocood 78f4d7b
domain: fix leak test
coocood 6beafe9
simple rewrite supports param marker
coocood 5edbe57
check error
coocood fc708ee
Merge branch 'master' into point-get-for-update
coocood 8f7e217
Merge branch 'master' into point-get-for-update
ngaut File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,6 +127,8 @@ func tryFastPlan(ctx sessionctx.Context, node ast.Node) Plan { | |
} | ||
return fp | ||
} | ||
case *ast.UpdateStmt: | ||
return tryUpdatePointPlan(ctx, x) | ||
case *ast.DeleteStmt: | ||
return tryDeletePointPlan(ctx, x) | ||
} | ||
|
@@ -382,6 +384,55 @@ func findInPairs(colName string, pairs []nameValuePair) int { | |
return -1 | ||
} | ||
|
||
func tryUpdatePointPlan(ctx sessionctx.Context, updateStmt *ast.UpdateStmt) Plan { | ||
selStmt := &ast.SelectStmt{ | ||
Fields: &ast.FieldList{}, | ||
From: updateStmt.TableRefs, | ||
Where: updateStmt.Where, | ||
OrderBy: updateStmt.Order, | ||
Limit: updateStmt.Limit, | ||
} | ||
fastSelect := tryPointGetPlan(ctx, selStmt) | ||
if fastSelect == nil { | ||
return nil | ||
} | ||
checkFastPlanPrivilege(ctx, fastSelect, mysql.SelectPriv, mysql.UpdatePriv) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Check the result? |
||
orderedList := buildOrderedList(ctx, fastSelect, updateStmt.List) | ||
if orderedList == nil { | ||
return nil | ||
} | ||
updatePlan := &Update{ | ||
SelectPlan: fastSelect, | ||
OrderedList: orderedList, | ||
} | ||
updatePlan.SetSchema(fastSelect.schema) | ||
return updatePlan | ||
} | ||
|
||
func buildOrderedList(ctx sessionctx.Context, fastSelect *PointGetPlan, list []*ast.Assignment) []*expression.Assignment { | ||
orderedList := make([]*expression.Assignment, 0, len(list)) | ||
for _, assign := range list { | ||
col, err := fastSelect.schema.FindColumn(assign.Column) | ||
if err != nil { | ||
return nil | ||
} | ||
if col == nil { | ||
return nil | ||
} | ||
newAssign := &expression.Assignment{ | ||
Col: col, | ||
} | ||
expr, err := expression.RewriteSimpleExprWithSchema(ctx, assign.Expr, fastSelect.schema) | ||
if err != nil { | ||
return nil | ||
} | ||
expr = expression.BuildCastFunction(ctx, expr, col.GetType()) | ||
newAssign.Expr = expr.ResolveIndices(fastSelect.schema) | ||
orderedList = append(orderedList, newAssign) | ||
} | ||
return orderedList | ||
} | ||
|
||
func tryDeletePointPlan(ctx sessionctx.Context, delStmt *ast.DeleteStmt) Plan { | ||
if delStmt.IsMultiTable { | ||
return nil | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
What is this for?
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.
Wait for the goroutine to quit to pass leak test.