From bebcf0af17e63f5f0937e40d94c1a1d9244a0176 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sun, 17 Nov 2019 12:00:08 -0800 Subject: [PATCH] Make it possible "force" the builder to be constructed --- src/next/jdbc/result_set.clj | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/next/jdbc/result_set.clj b/src/next/jdbc/result_set.clj index 9025397..06c6371 100644 --- a/src/next/jdbc/result_set.clj +++ b/src/next/jdbc/result_set.clj @@ -460,6 +460,11 @@ (row-builder @builder) {`core-p/datafy (navize-row connectable opts)})) + clojure.lang.IDeref + (deref [this] + (deref builder)) + + ;; from java.lang.Object: (toString [_] (try (str (row-builder @builder))