diff options
author | Carlo Zancanaro <carlo@clearboxsystems.com.au> | 2013-11-25 01:18:19 +1100 |
---|---|---|
committer | Carlo Zancanaro <carlo@clearboxsystems.com.au> | 2013-11-25 01:18:19 +1100 |
commit | fe1a2f5ef652cb943be14982f31b3ad236d00629 (patch) | |
tree | 7fb837d7485f029b9e0c8376ac43ad743f5a2a19 /src/clojure_sql | |
parent | 2746c6b08b878190ee7c54a7414bf444c660ff1e (diff) |
Remove a stupid testing thing, update the README a touch
Diffstat (limited to 'src/clojure_sql')
-rw-r--r-- | src/clojure_sql/core.clj | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/clojure_sql/core.clj b/src/clojure_sql/core.clj index 613adf6..67b2c4d 100644 --- a/src/clojure_sql/core.clj +++ b/src/clojure_sql/core.clj @@ -64,10 +64,4 @@ (assert (:executor query) "Cannot execute a query without a query executor") (q/delete! (:executor query) query)) -(join (-> (table :x) - (project [:a :b])) - (-> (table :x) - (project [:a :b]) - distinct)) - |