Skip to content

Commit

Permalink
Merge branch 'release/1.2.13'
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Mar 17, 2021
2 parents 26e56ba + 33942d8 commit b27cfdb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 1.2.13 - 2020.10.20
### Changed
* Removed the MySQL-specific `--no-tablespaces` from the mysqldump command options
* Removed the MySQL-specific `--set-gtid-purged=OFF` to the `common_mysql.sh` from the mysqldump command options

## 1.2.12 - 2020.10.20
### Added
Expand Down
2 changes: 1 addition & 1 deletion scripts/common/common_mysql.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ done
# Additional arguments for mysqldump
MYSQLDUMP_ADDITIONAL_ARGS=""
MYSQLDUMP_ADDITIONAL_ARGS+="--add-drop-table "
MYSQLDUMP_ADDITIONAL_ARGS+="--no-tablespaces "
MYSQLDUMP_ADDITIONAL_ARGS+="--comments "
MYSQLDUMP_ADDITIONAL_ARGS+="--create-options "
MYSQLDUMP_ADDITIONAL_ARGS+="--dump-date "
MYSQLDUMP_ADDITIONAL_ARGS+="--no-autocommit "
MYSQLDUMP_ADDITIONAL_ARGS+="--routines "
MYSQLDUMP_ADDITIONAL_ARGS+="--set-charset "
MYSQLDUMP_ADDITIONAL_ARGS+="--triggers "
MYSQLDUMP_ADDITIONAL_ARGS+="--set-gtid-purged=OFF "

# Arguments to dump just the schema
MYSQLDUMP_SCHEMA_ARGS=""
Expand Down

0 comments on commit b27cfdb

Please sign in to comment.