Skip to content

Commit b520e90

Browse files
authored
fix(engine/sqlite): fix compile error (#2564)
1 parent 6d32f72 commit b520e90

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
@@ -980,7 +980,7 @@ func (c *cc) convertCastExpr(n *parser.Expr_castContext) ast.Node {
980980
func (c *cc) convertCollateExpr(n *parser.Expr_collateContext) ast.Node {
981981
return &ast.CollateExpr{
982982
Xpr: c.convert(n.Expr()),
983-
Arg: NewIdentifer(n.Collation_name().GetText()),
983+
Arg: NewIdentifier(n.Collation_name().GetText()),
984984
Location: n.GetStart().GetStart(),
985985
}
986986
}

0 commit comments

Comments
 (0)