From 1fdf6774b1cc8b386da56c41fa0b5d1d8a20ac17 Mon Sep 17 00:00:00 2001 From: mike Date: Fri, 1 Oct 2021 21:03:24 -0500 Subject: [PATCH] Fix typos in SQL log output --- src/next/jdbc/sql_logging.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/next/jdbc/sql_logging.clj b/src/next/jdbc/sql_logging.clj index 92cb156..ef8b0f6 100644 --- a/src/next/jdbc/sql_logging.clj +++ b/src/next/jdbc/sql_logging.clj @@ -37,7 +37,7 @@ (merge (:options this) opts)) (result-logger-helper this 'next.jdbc/execute-one! state)) (catch Throwable t - (result-logger-helper t this 'next.jdbc/execut-one! state) + (result-logger-helper t this 'next.jdbc/execute-one! state) (throw t))))) (-execute-all [this sql-params opts] (let [state ((:sql-logger this) 'next.jdbc/execute! sql-params)] @@ -46,7 +46,7 @@ (merge (:options this) opts)) (result-logger-helper this 'next.jdbc/execute! state)) (catch Throwable t - (result-logger-helper t this 'next.jdbc/execut-one! state) + (result-logger-helper t this 'next.jdbc/execute! state) (throw t)))))) (extend-protocol p/Preparable