diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2019-02-20 17:22:44 +0100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2019-02-20 17:22:44 +0100 |
commit | 39a2984dc00925c8e08917c9313eaa03b82011f4 (patch) | |
tree | e6077f0606116158a96e6034d820d189193dc1c7 /extra | |
parent | a2f82b649d39ec8e5e321430adf1d1ed13f86174 (diff) | |
download | mariadb-git-39a2984dc00925c8e08917c9313eaa03b82011f4.tar.gz |
Revert "MDEV-18575 Cleanup : remove innodb-encrypt-log parameter from mariabackup"
This reverts commit 3262967008bf2c2978bbf97960a3ea168fec9c26.
It was checked in by mistake
Diffstat (limited to 'extra')
-rw-r--r-- | extra/mariabackup/xtrabackup.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc index d29c570ab37..2d28a6caa84 100644 --- a/extra/mariabackup/xtrabackup.cc +++ b/extra/mariabackup/xtrabackup.cc @@ -566,6 +566,7 @@ enum options_xtrabackup OPT_XTRA_INCREMENTAL_FORCE_SCAN, OPT_DEFAULTS_GROUP, OPT_PLUGIN_LOAD, + OPT_INNODB_ENCRYPT_LOG, OPT_CLOSE_FILES, OPT_CORE_FILE, @@ -1158,6 +1159,10 @@ Disable with --skip-innodb-doublewrite.", (G_PTR*) &innobase_use_doublewrite, &xb_plugin_load, &xb_plugin_load, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0 }, + { "innodb-encrypt-log", OPT_INNODB_ENCRYPT_LOG, "encrypton plugin to load", + &srv_encrypt_log, &srv_encrypt_log, + 0, GET_BOOL, REQUIRED_ARG, 0, 0, 0, 0, 0, 0 }, + {"open_files_limit", OPT_OPEN_FILES_LIMIT, "the maximum number of file " "descriptors to reserve with setrlimit().", (G_PTR*) &xb_open_files_limit, (G_PTR*) &xb_open_files_limit, 0, GET_ULONG, |