Skip to content

Commit b3d85bf

Browse files
committed
Fix MySQL driver warning message
1 parent c073d40 commit b3d85bf

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

embulk-input-mysql/src/main/java/org/embulk/input/mysql/MySQLInputConnection.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,9 @@ public void compareTimeZone() throws SQLException
7777
@Override
7878
public void showDriverVersion() throws SQLException {
7979
super.showDriverVersion();
80-
logger.warn("This plugin will update MySQL Connector/J version on a future release.");
81-
logger.warn("It has some incompatibility change.");
82-
logger.warn("Please read a document and make sure configuration carefully before update the plugin.");
80+
logger.warn("This plugin will update MySQL Connector/J version in the near future release.");
81+
logger.warn("It has some incompatibility changes.");
82+
logger.warn("For example, the 5.1.35 introduced `noTimezoneConversionForDateType` and `cacheDefaultTimezone` options.");
83+
logger.warn("Please read a document and make sure configuration carefully before updating the plugin.");
8384
}
8485
}

0 commit comments

Comments
 (0)