mirror of
https://github.com/dimitri/pgloader.git
synced 2026-05-04 10:31:02 +02:00
Fix support for <> in MS SQL filter parsing.
Beware of the order of the parser attempts... See #365.
This commit is contained in:
parent
44660326d7
commit
ac7f326447
@ -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))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user