Handle empty :where SQL clauses in query.
This commit is contained in:
parent
13dc1cc9b6
commit
4262b10f55
1 changed files with 6 additions and 5 deletions
|
@ -170,11 +170,12 @@
|
|||
[(map row columns-in-order) nil])))))
|
||||
|
||||
(defn context->sql-clause [context]
|
||||
(merge
|
||||
{:select (sql-projection context)
|
||||
:from (:from context)
|
||||
:where (if (empty? (:wheres context))
|
||||
nil
|
||||
(cons :and (:wheres context)))})
|
||||
:from (:from context)}
|
||||
(if (empty? (:wheres context))
|
||||
{}
|
||||
{:where (cons :and (:wheres context))})))
|
||||
|
||||
(defn context->sql-string [context]
|
||||
(->
|
||||
|
|
Loading…
Reference in a new issue