Skip to content

Commit

Permalink
fix(engine/sqlite): fix compile error (#2564)
Browse files Browse the repository at this point in the history
  • Loading branch information
orisano committed Aug 2, 2023
1 parent 6d32f72 commit b520e90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/engine/sqlite/convert.go
Original file line number Diff line number Diff line change
Expand Up @@ -980,7 +980,7 @@ func (c *cc) convertCastExpr(n *parser.Expr_castContext) ast.Node {
func (c *cc) convertCollateExpr(n *parser.Expr_collateContext) ast.Node {
return &ast.CollateExpr{
Xpr: c.convert(n.Expr()),
Arg: NewIdentifer(n.Collation_name().GetText()),
Arg: NewIdentifier(n.Collation_name().GetText()),
Location: n.GetStart().GetStart(),
}
}
Expand Down

0 comments on commit b520e90

Please sign in to comment.