Skip to content

Commit feab13e

Browse files
fix(sqlite): removed ToLower in typecast
1 parent 6b2ed20 commit feab13e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/engine/sqlite/convert.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@ func (c *cc) convertCastExpr(n *parser.Expr_castContext) ast.Node {
10791079
TypeName: &ast.TypeName{
10801080
Name: name,
10811081
Names: &ast.List{Items: []ast.Node{
1082-
NewIdentifier(name),
1082+
&ast.String{Str: name},
10831083
}},
10841084
ArrayBounds: &ast.List{},
10851085
},

0 commit comments

Comments
 (0)