From e9d93085004f36f97b2d7a9cc11ad4230182a93e Mon Sep 17 00:00:00 2001 From: Leon Mergen Date: Mon, 6 Jun 2016 16:47:40 +0200 Subject: [PATCH] Use a transducer instead of a lazy sequence --- src/suricatta/dsl/pgsql.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/suricatta/dsl/pgsql.clj b/src/suricatta/dsl/pgsql.clj index 2b99e0d..84c36c1 100644 --- a/src/suricatta/dsl/pgsql.clj +++ b/src/suricatta/dsl/pgsql.clj @@ -45,7 +45,7 @@ (extend-protocol proto/ISQLType java.sql.Array (-convert [self] - (into [] (map proto/-convert (.getArray self))))) + (into [] (map proto/-convert) (.getArray self)))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;