diff --git a/.joker b/.joker index 281d21e..5687255 100644 --- a/.joker +++ b/.joker @@ -1 +1,5 @@ -{:known-macros [next.jdbc/with-transaction]} +{:known-macros [next.jdbc/with-transaction] + :ignored-unused-namespaces [next.jdbc.connection + next.jdbc.prepare + next.jdbc.result-set + next.jdbc.transaction]} diff --git a/src/next/jdbc.clj b/src/next/jdbc.clj index 99a2aec..5ab4876 100644 --- a/src/next/jdbc.clj +++ b/src/next/jdbc.clj @@ -42,11 +42,11 @@ * `:result-type` -- `:forward-only`, `:scroll-insensitive`, `:scroll-sensitive`, * `:return-keys` -- either `true` or a vector of key names to return, * `:timeout` -- the query timeout." - (:require [next.jdbc.connection] ; used to extend protocols - [next.jdbc.prepare] ; used to extend protocols + (:require [next.jdbc.connection] + [next.jdbc.prepare] [next.jdbc.protocols :as p] - [next.jdbc.result-set] ; used to extend protocols - [next.jdbc.transaction])) ; used to extend protocols + [next.jdbc.result-set] + [next.jdbc.transaction])) (set! *warn-on-reflection* true)