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
|
||||
nil
|
||||
(sqlize [_] "NULL")
|
||||
#?(:clj String :cljs js/String)
|
||||
#?(:clj String :cljs string)
|
||||
(sqlize [x] (str \' (str/replace x "'" "''") \'))
|
||||
#?(:clj clojure.lang.Keyword :cljs Keyword)
|
||||
(sqlize [x] (sql-kw x))
|
||||
|
|
|
|||
Loading…
Reference in a new issue