diff options
author | Carlo Zancanaro <carlo@clearboxsystems.com.au> | 2013-06-16 00:36:36 +1000 |
---|---|---|
committer | Carlo Zancanaro <carlo@clearboxsystems.com.au> | 2013-06-16 00:36:36 +1000 |
commit | 82aa383a9c0f9d9d921135a10e919125d9115924 (patch) | |
tree | df23a2361b48688147b0dc075d464dcff9972f50 /test | |
parent | 148f752b5f48707dc3d7fe448d1faf33d5cd0228 (diff) |
Bring the DSL back up to previous features, fix the compiler
It should generally be usable at this point. It should generate the queries
correctly (including join order and stuff) and approximately properly do
things. The type of join stuff still hasn't been finished, but if the code were
left as-is it would still be possible to get whatever you wanted out of it, I
think.
Basically: lots of work has been done and we're approaching something more
usable.
Diffstat (limited to 'test')
-rw-r--r-- | test/clojure_sql/dsl_test.clj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/clojure_sql/dsl_test.clj b/test/clojure_sql/dsl_test.clj index 182749e..e5545fc 100644 --- a/test/clojure_sql/dsl_test.clj +++ b/test/clojure_sql/dsl_test.clj @@ -3,8 +3,6 @@ (:require [clojure-sql.dsl :refer :all] [midje.sweet :refer :all])) -(unfinished join) - (fact "Table creates basic queries on tables" (table ..name..) @@ -166,3 +164,5 @@ ..field2.. [..table.. ..field2..]}}) +(fact "joining tables merges tables and fields" + ) |