Skip to content

Commit

Permalink
feat: keep the last_insert_id function to get the correct types in th…
Browse files Browse the repository at this point in the history
…e output

Signed-off-by: Andres Taylor <andres@planetscale.com>
  • Loading branch information
systay committed Dec 10, 2024
1 parent d0764df commit bb4b1e0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 34 deletions.
36 changes: 8 additions & 28 deletions go/vt/vtgate/planbuilder/operators/query_planning.go
Original file line number Diff line number Diff line change
Expand Up @@ -823,31 +823,29 @@ func tryPushUnion(ctx *plancontext.PlanningContext, op *Union) (Operator, *Apply
func handleLastInsertIDColumns(ctx *plancontext.PlanningContext, output Operator) Operator {
offset := -1
topLevel := false
var arg sqlparser.Expr
var foundFunc *sqlparser.FuncExpr
for i, expr := range output.GetSelectExprs(ctx) {
ae, ok := expr.(*sqlparser.AliasedExpr)
if !ok {
panic(vterrors.VT09015())
}

replaceFn := func(node sqlparser.Expr) (sqlparser.Expr, bool) {
_ = sqlparser.Walk(func(node sqlparser.SQLNode) (bool, error) {
fnc, ok := node.(*sqlparser.FuncExpr)
if !ok || !fnc.Name.EqualString("last_insert_id") {
return node, false
return true, nil
}
if offset != -1 {
panic(vterrors.VT12001("last_insert_id() found multiple times in select list"))
}
arg = fnc.Exprs[0]
foundFunc = fnc
if node == ae.Expr {
topLevel = true
}
offset = i
return arg, true
}
return false, nil

newExpr := sqlparser.CopyAndReplaceExpr(ae.Expr, replaceFn)
ae.Expr = newExpr.(sqlparser.Expr)
}, ae.Expr)
}
if offset == -1 {
panic(vterrors.VT12001("last_insert_id(<expr>) only supported in the select list"))
Expand All @@ -861,7 +859,7 @@ func handleLastInsertIDColumns(ctx *plancontext.PlanningContext, output Operator
}
}

offset = output.AddColumn(ctx, false, false, aeWrap(arg))
offset = output.AddColumn(ctx, false, false, aeWrap(foundFunc))
return &SaveToSession{
unaryOperator: unaryOperator{
Source: output,
Expand Down Expand Up @@ -890,25 +888,7 @@ func addTruncationOrProjectionToReturnOutput(ctx *plancontext.PlanningContext, s
}

func extractSelectExpressions(horizon *Horizon) sqlparser.SelectExprs {
sel := sqlparser.GetFirstSelect(horizon.Query)
// we handle last_insert_id with arguments separately - no need to send this down to mysql
selExprs := sqlparser.CopyAndReplaceExpr(sel.SelectExprs, func(node sqlparser.Expr) (sqlparser.Expr, bool) {
switch node := node.(type) {
case *sqlparser.FuncExpr:
if node.Name.EqualString("last_insert_id") && len(node.Exprs) == 1 {
return node.Exprs[0], true
}
return node, true
case sqlparser.Expr:
// we do this to make sure we get a clone of the expression
// if planning changes the expression, we should not change the original
return node, true
default:
return nil, false
}
})

return selExprs.(sqlparser.SelectExprs)
return sqlparser.CloneSelectExprs(sqlparser.GetFirstSelect(horizon.Query).SelectExprs)
}

func colNamesAlign(expected, actual sqlparser.SelectExprs) bool {
Expand Down
12 changes: 6 additions & 6 deletions go/vt/vtgate/planbuilder/testdata/select_cases.json
Original file line number Diff line number Diff line change
Expand Up @@ -2177,8 +2177,8 @@
"Name": "main",
"Sharded": false
},
"FieldQuery": "select 12 from dual where 1 != 1",
"Query": "select 12 from dual",
"FieldQuery": "select last_insert_id(12) from dual where 1 != 1",
"Query": "select last_insert_id(12) from dual",
"Table": "dual"
}
]
Expand All @@ -2205,8 +2205,8 @@
"Name": "user",
"Sharded": true
},
"FieldQuery": "select bar, 12, foo from `user` where 1 != 1",
"Query": "select bar, 12, foo from `user`",
"FieldQuery": "select bar, 12, last_insert_id(foo) from `user` where 1 != 1",
"Query": "select bar, 12, last_insert_id(foo) from `user`",
"Table": "`user`"
}
]
Expand Down Expand Up @@ -5687,8 +5687,8 @@
"Name": "user",
"Sharded": true
},
"FieldQuery": "select id from `user` where 1 != 1",
"Query": "select id from `user`",
"FieldQuery": "select last_insert_id(id) from `user` where 1 != 1",
"Query": "select last_insert_id(id) from `user`",
"Table": "`user`"
}
]
Expand Down

0 comments on commit bb4b1e0

Please sign in to comment.