fix string for cljs too
This commit is contained in:
parent
c10a97e1ec
commit
d31600d2c0
1 changed files with 1 additions and 1 deletions
|
|
@ -267,7 +267,7 @@
|
||||||
(extend-protocol p/InlineValue
|
(extend-protocol p/InlineValue
|
||||||
nil
|
nil
|
||||||
(sqlize [_] "NULL")
|
(sqlize [_] "NULL")
|
||||||
#?(:clj String :cljs js/String)
|
#?(:clj String :cljs string)
|
||||||
(sqlize [x] (str \' (str/replace x "'" "''") \'))
|
(sqlize [x] (str \' (str/replace x "'" "''") \'))
|
||||||
#?(:clj clojure.lang.Keyword :cljs Keyword)
|
#?(:clj clojure.lang.Keyword :cljs Keyword)
|
||||||
(sqlize [x] (sql-kw x))
|
(sqlize [x] (sql-kw x))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue