fixes #174
This commit is contained in:
parent
b9708e825f
commit
cc975f825d
2 changed files with 5 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Reference in a new issue