Skip to content

Commit

Permalink
fix: mysqldump fails due to COLUMN_STATISTICS
Browse files Browse the repository at this point in the history
Matches the mysql-client version with the mysql server version to resolve the missing COLUMN_STATISTICS table when dumping a database.
  • Loading branch information
Nick de Kleijn authored Jul 23, 2020
1 parent eb11cb0 commit 4f15a57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,10 @@ done

echo "
Installing mysql-client, gnu-sed, pv, jq"
brew install gnu-sed mysql-client pv jq &>/dev/null &
brew install gnu-sed mysql-client@5.7 pv jq &>/dev/null &
spinner

brew link mysql-client --force &>/dev/null &
brew link mysql-client@5.7 --force &>/dev/null &
spinner

echo "
Expand Down

0 comments on commit 4f15a57

Please sign in to comment.