Skip to content

Due to update MySQL Connector/J, modify a warning message. #130

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,19 +67,9 @@ public void compareTimeZone() throws SQLException
timeZoneComparison.compareTimeZone();
}

//
//
// The MySQL Connector/J 5.1.35 introduce new option `Current MySQL Connect`.
// It has incompatibility behavior current version and 5.1.35.
//
// This method announces users about this change before the update driver version.
//
@Override
public void showDriverVersion() throws SQLException {
super.showDriverVersion();
logger.warn("This plugin will update MySQL Connector/J version in the near future release.");
logger.warn("It has some incompatibility changes.");
logger.warn("For example, the 5.1.35 introduced `noTimezoneConversionForDateType` and `cacheDefaultTimezone` options.");
logger.warn("Please read a document and make sure configuration carefully before updating the plugin.");
logger.warn("The embulk-input-mysql 0.8.7 updated MySQL Connector/J driver.");
}
}