Skip to content
Open
Changes from 1 commit
Commits
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
Next Next commit
fix(sqlite): removed ToLower in typecast
  • Loading branch information
giuliano-macedo committed Feb 25, 2025
commit feab13e4e8cda016ebdd49a2a67b900ac055c977
2 changes: 1 addition & 1 deletion internal/engine/sqlite/convert.go
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ func (c *cc) convertCastExpr(n *parser.Expr_castContext) ast.Node {
TypeName: &ast.TypeName{
Name: name,
Names: &ast.List{Items: []ast.Node{
NewIdentifier(name),
&ast.String{Str: name},
}},
ArrayBounds: &ast.List{},
},
Expand Down