Skip to content
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

Bump MySQL version for docker builds to 8.0.23 #7811

Merged
merged 1 commit into from
Apr 9, 2021
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docker/lite/install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ mysql57)
)
;;
mysql80)
mysql8_version=8.0.21
mysql8_version=8.0.23
do_fetch https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/libmysqlclient21_${mysql8_version}-1debian10_amd64.deb /tmp/libmysqlclient21_${mysql8_version}-1debian10_amd64.deb
do_fetch https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/mysql-community-client-core_${mysql8_version}-1debian10_amd64.deb /tmp/mysql-community-client-core_${mysql8_version}-1debian10_amd64.deb
do_fetch https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/mysql-community-client_${mysql8_version}-1debian10_amd64.deb /tmp/mysql-community-client_${mysql8_version}-1debian10_amd64.deb
Expand Down
2 changes: 0 additions & 2 deletions go/vt/vttablet/tabletserver/throttle/throttler.go
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,6 @@ func (throttler *Throttler) createThrottlerUser(ctx context.Context) (password s
// any query that writes to the binary log, CREATE USER does not hang.
// The simplest such query is FLUSH STATUS. Other options are FLUSH PRIVILEGES or similar.
// The bug was found in MySQL 8.0.21, and not found in 5.7.30
// at this time, Vitess only supports 5.7 an ddoes not support 8.0,
// but please keep this code in anticipation of supporting 8.0
// - shlomi
simpleBinlogQuery := `FLUSH STATUS`
if _, err := conn.ExecuteFetch(simpleBinlogQuery, 0, false); err != nil {
Expand Down