diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2020-10-16 07:51:37 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2020-10-16 07:51:37 +0300 |
commit | a0113683d7a848be9d0403393c7b5c478cd813a6 (patch) | |
tree | 1b422bf27ab7b322d5c0d4a130ec41576f81ead4 /extra | |
parent | 9028cc6b865222cae8c396b4ec3e317c8ee068d1 (diff) | |
download | mariadb-git-a0113683d7a848be9d0403393c7b5c478cd813a6.tar.gz |
Fixup 9028cc6b865222cae8c396b4ec3e317c8ee068d1
We forgot to change innodb_autoextend_increment from ULONG to
UINT (always 32-bit) in Mariabackup.
Diffstat (limited to 'extra')
-rw-r--r-- | extra/mariabackup/xtrabackup.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc index 1d98f89894a..cc7aea4e399 100644 --- a/extra/mariabackup/xtrabackup.cc +++ b/extra/mariabackup/xtrabackup.cc @@ -1255,7 +1255,7 @@ struct my_option xb_server_options[] = "Data file autoextend increment in megabytes", (G_PTR*) &sys_tablespace_auto_extend_increment, (G_PTR*) &sys_tablespace_auto_extend_increment, - 0, GET_ULONG, REQUIRED_ARG, 8L, 1L, 1000L, 0, 1L, 0}, + 0, GET_UINT, REQUIRED_ARG, 8, 1, 1000, 0, 1, 0}, {"innodb_data_file_path", OPT_INNODB_DATA_FILE_PATH, "Path to individual files and their sizes.", &innobase_data_file_path, &innobase_data_file_path, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, |