diff options
author | Christian Loos <cloos@netcologne.de> | 2015-12-03 13:31:33 +0100 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2015-12-03 17:06:05 +0400 |
commit | f3e5329846a99339d8b69e27b2470956bcf1ed29 (patch) | |
tree | 720fe52b1d9df7ec30b1b85cd6025d337e7c57ce | |
parent | 089a586b43bba6fa74538bca8f0a361c0a984e33 (diff) | |
download | mariadb-git-f3e5329846a99339d8b69e27b2470956bcf1ed29.tar.gz |
switch from myisam_recover to myisam_recover_options
myisam_recover is only an alias for myisam_recover_options.
Use the option name instead of the alias is more correct.
This also avoids an note about the use of an alias instead of the option
name on every server start.
-rw-r--r-- | debian/additions/my.cnf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/additions/my.cnf b/debian/additions/my.cnf index 34fdd13c99d..4645e7c557a 100644 --- a/debian/additions/my.cnf +++ b/debian/additions/my.cnf @@ -62,7 +62,7 @@ max_heap_table_size = 32M # # This replaces the startup script and checks MyISAM tables if needed # the first time they are touched. On error, make copy and try a repair. -myisam_recover = BACKUP +myisam_recover_options = BACKUP key_buffer_size = 128M #open-files-limit = 2000 table_open_cache = 400 |