Skip to content

Commit

Permalink
Merge pull request #15 from solatis/master
Browse files Browse the repository at this point in the history
Recursively convert nested array types
  • Loading branch information
niwinz committed Jun 6, 2016
2 parents 52affd2 + e9d9308 commit 9a4f489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/suricatta/dsl/pgsql.clj
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
(extend-protocol proto/ISQLType
java.sql.Array
(-convert [self]
(into [] (.getArray self))))
(into [] (map proto/-convert) (.getArray self))))


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Expand Down

0 comments on commit 9a4f489

Please sign in to comment.