LauJensen / clojureql

ClojureQL is superior SQL integration for Clojure
https://clojureql.sabrecms.com
Eclipse Public License 1.0
285 stars 39 forks source link

Composable where clauses #42

Closed doooks closed 13 years ago

doooks commented 13 years ago

Currently on the last where clause applied to a query is used. It would be great if where clauses could be truly composable and adding (where c1) (where c2) would result in (where (and c1 c2)) rather than (where c2).

LauJensen commented 13 years ago

Fixed: https://github.com/LauJensen/clojureql/commit/4b99ca40294fded7ba5cb6dcebbc5e041fd33909

doooks commented 13 years ago

Thanks Lau!