DATAJDBC-559 - Upgrading the MariaDB JDBC driver.
This changes the behavior of the JDBC driver from always returning `MySQL` for product name to a more involved logic which might result in it returning `MariaDB`. Original pull request: #231.
This commit is contained in:
@@ -51,7 +51,7 @@ class MariaDBDataSourceConfiguration extends DataSourceConfiguration {
|
||||
|
||||
if (MARIADB_CONTAINER == null) {
|
||||
|
||||
MariaDBContainer<?> container = new MariaDBContainer<>()
|
||||
MariaDBContainer<?> container = new MariaDBContainer<>("mariadb:10.5")
|
||||
.withUsername("root")
|
||||
.withPassword("")
|
||||
.withConfigurationOverride("");
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
</appender>
|
||||
|
||||
<logger name="org.springframework.test.context.TestContextManager" level="off" />
|
||||
<!--<logger name="org.springframework.data" level="info" />-->
|
||||
<logger name="org.springframework.data" level="info" />
|
||||
<!--<logger name="org.springframework.jdbc.core" level="trace" />-->
|
||||
<!--<logger name="org.springframework.data.jdbc.mybatis.DummyEntityMapper" level="trace" />-->
|
||||
|
||||
|
||||
Reference in New Issue
Block a user