Fix 'ComparisonOperator' parsing

This commit is contained in:
Pijus Kamandulis
2025-02-18 19:12:08 +02:00
parent 14c5400d23
commit 6e3f4169a1
3 changed files with 28 additions and 28 deletions

View File

@@ -403,7 +403,7 @@ OrderBy <- "ORDER"i ws "BY"i
Offset <- "OFFSET"i
ComparisonOperator <- ("=" / "!=" / "<" / "<=" / ">" / ">=") {
ComparisonOperator <- ("<=" / ">=" / "=" / "!=" / "<" / ">") {
return string(c.text), nil
}