This commit is contained in:
Sean Corfield 2021-08-27 23:30:56 -07:00
parent b9708e825f
commit cc975f825d
2 changed files with 5 additions and 2 deletions

View file

@ -3,6 +3,7 @@
Only accretive/fixative changes will be made from now on.
* 1.2.next in progress
* Fix #174 by removing `:property-separator` from "etc" map and defaulting H2 to `";"` for this.
* Switch to `tools.build` for running tests and JAR building etc.
* 1.2.689 -- 2021-08-01

View file

@ -71,8 +71,10 @@
"duckdb" {:classname "org.duckdb.DuckDBDriver"
:host :none}
"h2" {:classname "org.h2.Driver"
:property-separator ";"
:host :none}
"h2:mem" {:classname "org.h2.Driver"}
"h2:mem" {:classname "org.h2.Driver"
:property-separator ";"}
"hsql" {:classname "org.hsqldb.jdbcDriver"
:alias-for "hsqldb"
:host :none}
@ -161,7 +163,7 @@
:as db-spec}]
(let [etc (dissoc db-spec
:dbtype :dbname :host :port :classname
:dbname-separator :host-prefix
:dbname-separator :host-prefix property-separator
:jdbcUrl)]
(if jdbcUrl
[jdbcUrl etc]