breaking change in beta 4: :dbname "xtdb" now required

Signed-off-by: Sean Corfield <sean@corfield.org>
This commit is contained in:
Sean Corfield 2024-12-10 15:54:58 -08:00
parent 0282df7629
commit 4db63f6122
No known key found for this signature in database

View file

@ -64,7 +64,7 @@
(def ^:private test-jtds (def ^:private test-jtds
(when (System/getenv "NEXT_JDBC_TEST_MSSQL") test-jtds-map)) (when (System/getenv "NEXT_JDBC_TEST_MSSQL") test-jtds-map))
(def ^:private test-xtdb-map {:dbtype "xtdb"}) (def ^:private test-xtdb-map {:dbtype "xtdb" :dbname "xtdb"})
(def ^:private test-xtdb (def ^:private test-xtdb
(when (System/getenv "NEXT_JDBC_TEST_XTDB") test-xtdb-map)) (when (System/getenv "NEXT_JDBC_TEST_XTDB") test-xtdb-map))