Skip to content

Commit

Permalink
Merge pull request #7811 from planetscale/jg_bump_mysql8
Browse files Browse the repository at this point in the history
Bump MySQL version for docker builds to 8.0.23
  • Loading branch information
deepthi authored Apr 9, 2021
2 parents 0672300 + f80ad14 commit bf97de0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
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

0 comments on commit bf97de0

Please sign in to comment.