Revert #240 but keep the dependency updates
This commit is contained in:
parent
d10166c0ed
commit
05cc39a41c
2 changed files with 1 additions and 2 deletions
|
|
@ -1,6 +1,5 @@
|
||||||
## 0.9.5 in progress
|
## 0.9.5 in progress
|
||||||
|
|
||||||
* `:%call.arg` syntax extended to support more than one argument: `%call.first.second` Fix #240.
|
|
||||||
* `format-predicate` now accepts `parameterizer` as a named argument (default `:jdbc`) to match `format`. PR #234. (@glittershark)
|
* `format-predicate` now accepts `parameterizer` as a named argument (default `:jdbc`) to match `format`. PR #234. (@glittershark)
|
||||||
|
|
||||||
## 0.9.4
|
## 0.9.4
|
||||||
|
|
|
||||||
|
|
@ -388,7 +388,7 @@
|
||||||
(to-sql [x]
|
(to-sql [x]
|
||||||
(let [s (name x)]
|
(let [s (name x)]
|
||||||
(case (.charAt s 0)
|
(case (.charAt s 0)
|
||||||
\% (let [call-args (string/split (subs s 1) #"\.")]
|
\% (let [call-args (string/split (subs s 1) #"\." 2)]
|
||||||
(to-sql (apply call (map keyword call-args))))
|
(to-sql (apply call (map keyword call-args))))
|
||||||
\? (to-sql (param (keyword (subs s 1))))
|
\? (to-sql (param (keyword (subs s 1))))
|
||||||
(quote-identifier x))))
|
(quote-identifier x))))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue