Fix typos in SQL log output
This commit is contained in:
parent
5a9afd5337
commit
1fdf6774b1
1 changed files with 2 additions and 2 deletions
|
|
@ -37,7 +37,7 @@
|
||||||
(merge (:options this) opts))
|
(merge (:options this) opts))
|
||||||
(result-logger-helper this 'next.jdbc/execute-one! state))
|
(result-logger-helper this 'next.jdbc/execute-one! state))
|
||||||
(catch Throwable t
|
(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)))))
|
(throw t)))))
|
||||||
(-execute-all [this sql-params opts]
|
(-execute-all [this sql-params opts]
|
||||||
(let [state ((:sql-logger this) 'next.jdbc/execute! sql-params)]
|
(let [state ((:sql-logger this) 'next.jdbc/execute! sql-params)]
|
||||||
|
|
@ -46,7 +46,7 @@
|
||||||
(merge (:options this) opts))
|
(merge (:options this) opts))
|
||||||
(result-logger-helper this 'next.jdbc/execute! state))
|
(result-logger-helper this 'next.jdbc/execute! state))
|
||||||
(catch Throwable t
|
(catch Throwable t
|
||||||
(result-logger-helper t this 'next.jdbc/execut-one! state)
|
(result-logger-helper t this 'next.jdbc/execute! state)
|
||||||
(throw t))))))
|
(throw t))))))
|
||||||
|
|
||||||
(extend-protocol p/Preparable
|
(extend-protocol p/Preparable
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue