Merge pull request #64 from gerred/add-spec-unstrument
Add unstrument function to specs
This commit is contained in:
commit
ea2af9db11
1 changed files with 20 additions and 0 deletions
|
|
@ -202,3 +202,23 @@
|
||||||
`sql/get-by-id
|
`sql/get-by-id
|
||||||
`sql/update!
|
`sql/update!
|
||||||
`sql/delete!]))
|
`sql/delete!]))
|
||||||
|
|
||||||
|
(defn unstrument []
|
||||||
|
(st/unstrument [`jdbc/get-datasource
|
||||||
|
`jdbc/get-connection
|
||||||
|
`jdbc/prepare
|
||||||
|
`jdbc/plan
|
||||||
|
`jdbc/execute!
|
||||||
|
`jdbc/execute-one!
|
||||||
|
`jdbc/transact
|
||||||
|
`jdbc/with-transaction
|
||||||
|
`connection/->pool
|
||||||
|
`prepare/execute-batch!
|
||||||
|
`prepare/set-parameters
|
||||||
|
`sql/insert!
|
||||||
|
`sql/insert-multi!
|
||||||
|
`sql/query
|
||||||
|
`sql/find-by-keys
|
||||||
|
`sql/get-by-id
|
||||||
|
`sql/update!
|
||||||
|
`sql/delete!]))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue