Fix support for <> in MS SQL filter parsing.

Beware of the order of the parser attempts...

See #365.
This commit is contained in:
Dimitri Fontaine 2016-03-22 00:26:12 +01:00
parent 44660326d7
commit ac7f326447

View File

@ -97,7 +97,7 @@
(defrule and-op (and (? whitespace) (~ "and") (? whitespace)) (:constant "and"))
(defrule mssql-operator (and (? whitespace) (or = <= < >= > <> !=))
(defrule mssql-operator (and (? whitespace) (or = <> <= < >= > !=))
(:lambda (op) (second op)))
(defrule number (+ (digit-char-p character)) (:text t))