This is an automated email from the ASF dual-hosted git repository.

jark pushed a commit to branch release-1.11
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.11 by this push:
     new 8cdd78c  [FLINK-18082][jdbc] Fix UnsignedTypeConversionITCase stalls 
in ch.vorburger.mariadb4j.DB.stop
8cdd78c is described below

commit 8cdd78c6f301e7b818188c1f2d620f22498e6c9f
Author: Leonard Xu <[email protected]>
AuthorDate: Wed Jun 3 21:14:23 2020 +0800

    [FLINK-18082][jdbc] Fix UnsignedTypeConversionITCase stalls in 
ch.vorburger.mariadb4j.DB.stop
    
    This closes #12465
---
 flink-connectors/flink-connector-jdbc/pom.xml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/flink-connectors/flink-connector-jdbc/pom.xml 
b/flink-connectors/flink-connector-jdbc/pom.xml
index 8b2a206..72ff00f 100644
--- a/flink-connectors/flink-connector-jdbc/pom.xml
+++ b/flink-connectors/flink-connector-jdbc/pom.xml
@@ -123,6 +123,16 @@ under the License.
                        <version>2.4.0</version>
                        <scope>test</scope>
                </dependency>
+               <!-- ch.vorburger.mariaDB4j:mariaDB4j has a dependency of 
mariadb-java-client:2.3.0,
+                but we want to bump mariadb-java-client to 2.5.4 which fix a 
few notable bugs,
+                see: 
https://mariadb.com/kb/en/mariadb-connector-j-release-notes/
+                and the lower version may cause the test stability issue 
FLINK-18082.-->
+               <dependency>
+                       <groupId>org.mariadb.jdbc</groupId>
+                       <artifactId>mariadb-java-client</artifactId>
+                       <version>2.5.4</version>
+                       <scope>test</scope>
+               </dependency>
                <dependency>
                        <groupId>mysql</groupId>
                        <artifactId>mysql-connector-java</artifactId>

Reply via email to