mirror of
https://github.com/dimitri/pgloader.git
synced 2026-05-04 10:31:02 +02:00
Another MS SQL index filter fix.
The common lisp default printer is nice enough to know how to print symbols as strings, but that won't cut it when the symbol :is-not-null needs to be printed out "is not null", without the dashes. See #365.
This commit is contained in:
parent
e2fcd86868
commit
d1cfe90f5d
@ -42,6 +42,8 @@
|
||||
(list
|
||||
(destructuring-bind (op id &optional arg) node
|
||||
(case op
|
||||
(:is-null (format s "~a IS NULL" id))
|
||||
(:is-not-null (format s "~a IS NOT NULL" id))
|
||||
(:between
|
||||
(format s "~a between ~a and ~a"
|
||||
id (first arg) (second arg)))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user