clean up nses
Signed-off-by: Sean Corfield <sean@corfield.org>
This commit is contained in:
parent
05cfe1f3fa
commit
cad6462c53
2 changed files with 15 additions and 37 deletions
|
|
@ -2,15 +2,14 @@
|
|||
|
||||
(ns next.jdbc.datafy-test
|
||||
"Tests for the datafy extensions over JDBC types."
|
||||
(:require
|
||||
[clojure.datafy :as d]
|
||||
[clojure.set :as set]
|
||||
[clojure.test :refer [deftest is testing use-fixtures]]
|
||||
[next.jdbc :as jdbc]
|
||||
[next.jdbc.datafy]
|
||||
[next.jdbc.result-set :as rs]
|
||||
[next.jdbc.specs :as specs]
|
||||
[next.jdbc.test-fixtures
|
||||
(:require [clojure.datafy :as d]
|
||||
[clojure.set :as set]
|
||||
[clojure.test :refer [deftest is testing use-fixtures]]
|
||||
[next.jdbc :as jdbc]
|
||||
[next.jdbc.datafy]
|
||||
[next.jdbc.result-set :as rs]
|
||||
[next.jdbc.specs :as specs]
|
||||
[next.jdbc.test-fixtures
|
||||
:refer [db derby? ds jtds? mysql? postgres? sqlite? with-test-db
|
||||
xtdb?]]))
|
||||
|
||||
|
|
@ -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}))
|
||||
)
|
||||
|
|
|
|||
|
|
@ -2,15 +2,14 @@
|
|||
|
||||
(ns next.jdbc.sql-test
|
||||
"Tests for the syntactic sugar SQL functions."
|
||||
(:require
|
||||
[clojure.test :refer [deftest is testing use-fixtures]]
|
||||
[next.jdbc :as jdbc]
|
||||
[next.jdbc.specs :as specs]
|
||||
[next.jdbc.sql :as sql]
|
||||
[next.jdbc.test-fixtures
|
||||
(:require [clojure.test :refer [deftest is testing use-fixtures]]
|
||||
[next.jdbc :as jdbc]
|
||||
[next.jdbc.specs :as specs]
|
||||
[next.jdbc.sql :as sql]
|
||||
[next.jdbc.test-fixtures
|
||||
:refer [column col-kw default-options derby? ds index
|
||||
jtds? maria? mssql? mysql? postgres? sqlite? with-test-db xtdb?]]
|
||||
[next.jdbc.types :refer [as-other as-real as-varchar]]))
|
||||
[next.jdbc.types :refer [as-other as-real as-varchar]]))
|
||||
|
||||
(set! *warn-on-reflection* true)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue