clean up nses

Signed-off-by: Sean Corfield <sean@corfield.org>
This commit is contained in:
Sean Corfield 2024-11-24 09:31:34 -08:00
parent 05cfe1f3fa
commit cad6462c53
No known key found for this signature in database
2 changed files with 15 additions and 37 deletions

View file

@ -2,8 +2,7 @@
(ns next.jdbc.datafy-test
"Tests for the datafy extensions over JDBC types."
(:require
[clojure.datafy :as d]
(:require [clojure.datafy :as d]
[clojure.set :as set]
[clojure.test :refer [deftest is testing use-fixtures]]
[next.jdbc :as jdbc]
@ -145,24 +144,4 @@
(.getResultSet ps)
(.close ps)
(.close con)
#{
}
(= #{:driverMinorVersion :numericFunctions :catalogTerm :maxStatements :maxIndexLength :maxColumnsInOrderBy
:maxBinaryLiteralLength :driverName :procedureTerm :all-tables :SQLStateType :maxCharLiteralLength :JDBCMajorVersion
:catalogs :maxColumnsInTable :timeDateFunctions
:maxConnections
:systemFunctions :databaseMajorVersion :databaseProductVersion :JDBCMinorVersion :schemas :readOnly :driverVersion :class :maxTablesInSelect :maxColumnsInGroupBy
:identifierQuoteString :maxColumnsInIndex :driverMajorVersion :typeInfo :tableTypes
:maxRowSize :stringFunctions :resultSetHoldability
:SQLKeywords :searchStringEscape :URL :databaseProductName :catalogSeparator
:connection :catalogAtStart :maxStatementLength :extraNameCharacters :userName :databaseMinorVersion :maxColumnsInSelect :schemaTerm
}
#{:driverMinorVersion :numericFunctions :catalogTerm :maxStatements :maxIndexLength :maxColumnsInOrderBy
:maxBinaryLiteralLength :driverName :procedureTerm :all-tables :SQLStateType :maxCharLiteralLength :JDBCMajorVersion
:catalogs :maxColumnsInTable :timeDateFunctions
:maxConnections
:systemFunctions :databaseMajorVersion :databaseProductVersion :JDBCMinorVersion :schemas :readOnly :driverVersion :class :maxTablesInSelect :maxColumnsInGroupBy
:identifierQuoteString :maxColumnsInIndex :driverMajorVersion :typeInfo :tableTypes
:maxRowSize :stringFunctions :resultSetHoldability
:SQLKeywords :searchStringEscape :URL :databaseProductName :catalogSeparator
:connection :catalogAtStart :maxStatementLength :extraNameCharacters :userName :databaseMinorVersion :maxColumnsInSelect :schemaTerm}))
)

View file

@ -2,8 +2,7 @@
(ns next.jdbc.sql-test
"Tests for the syntactic sugar SQL functions."
(:require
[clojure.test :refer [deftest is testing use-fixtures]]
(:require [clojure.test :refer [deftest is testing use-fixtures]]
[next.jdbc :as jdbc]
[next.jdbc.specs :as specs]
[next.jdbc.sql :as sql]