summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/clojure_sql/core_test.clj13
1 files changed, 9 insertions, 4 deletions
diff --git a/test/clojure_sql/core_test.clj b/test/clojure_sql/core_test.clj
index b5d65e7..236e421 100644
--- a/test/clojure_sql/core_test.clj
+++ b/test/clojure_sql/core_test.clj
@@ -18,8 +18,13 @@
(into {} (-> (table :user) (project '{(+ :username :password) :u})))
-(-> (table {(-> (table :users)
- (project '[:username (+ 1 2 3)])
- (rename '{(+ 1 2 3) :x})
- (select `(exists ~(table :users)))) :u})
+(-> (table :users)
+ (project '[:username (+ 1 2 3)])
+ (rename '{(+ 1 2 3) :x})
+ (select `(exists ~(-> (table :users)
+ (select '(= 10 :username)))))
println)
+
+(-> (table :users)
+ (project {:username :un})
+ (select '(= :username 10)))