We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feab13e commit 66cf32bCopy full SHA for 66cf32b
internal/engine/sqlite/convert.go
@@ -1073,13 +1073,13 @@ func (c *cc) convertBetweenExpr(n *parser.Expr_betweenContext) ast.Node {
1073
}
1074
1075
func (c *cc) convertCastExpr(n *parser.Expr_castContext) ast.Node {
1076
- name := n.Type_name().GetText()
+ typeName := n.Type_name().GetText()
1077
return &ast.TypeCast{
1078
Arg: c.convert(n.Expr()),
1079
TypeName: &ast.TypeName{
1080
- Name: name,
+ Name: typeName,
1081
Names: &ast.List{Items: []ast.Node{
1082
- &ast.String{Str: name},
+ &ast.String{Str: typeName},
1083
}},
1084
ArrayBounds: &ast.List{},
1085
},
0 commit comments