File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
embulk-output-mysql/src/main/java/org/embulk/output/mysql Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -119,4 +119,20 @@ public void compareTimeZone() throws SQLException
119
119
timeZoneComparison .compareTimeZone ();
120
120
}
121
121
122
+ //
123
+ //
124
+ // The MySQL Connector/J 5.1.35 introduce new option `Current MySQL Connect`.
125
+ // It has incompatibility behavior current version and 5.1.35.
126
+ //
127
+ // This method announces users about this change before the update driver version.
128
+ //
129
+ @ Override
130
+ public void showDriverVersion () throws SQLException {
131
+ super .showDriverVersion ();
132
+ logger .warn ("This plugin will update MySQL Connector/J version in the near future release." );
133
+ logger .warn ("It has some incompatibility changes." );
134
+ logger .warn ("For example, the 5.1.35 introduced `noTimezoneConversionForDateType` and `cacheDefaultTimezone` options." );
135
+ logger .warn ("Please read a document and make sure configuration carefully before updating the plugin." );
136
+ }
137
+
122
138
}
You can’t perform that action at this time.
0 commit comments