summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarko@hundin.mysql.fi <>2004-12-02 12:40:25 +0200
committermarko@hundin.mysql.fi <>2004-12-02 12:40:25 +0200
commit89996cd7ad8e96bf4fa4b7d5fc663ddc2522619d (patch)
tree12c66f2db4d2fb63e8b40b464d13c30509e46994
parentc78eefbc9514cd805ec706cff43ee4413064edbe (diff)
downloadmariadb-git-89996cd7ad8e96bf4fa4b7d5fc663ddc2522619d.tar.gz
mysqld.cc:
innodb_autoextend_increment: set a maximum limit of 1000 (Bug #6904)
-rw-r--r--sql/mysqld.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc
index baab3017623..da834080bc0 100644
--- a/sql/mysqld.cc
+++ b/sql/mysqld.cc
@@ -4801,7 +4801,7 @@ replicating a LOAD DATA INFILE command.",
"Data file autoextend increment in megabytes",
(gptr*) &srv_auto_extend_increment,
(gptr*) &srv_auto_extend_increment,
- 0, GET_LONG, REQUIRED_ARG, 8L, 1L, ~0L, 0, 1L, 0},
+ 0, GET_LONG, REQUIRED_ARG, 8L, 1L, 1000L, 0, 1L, 0},
{"innodb_buffer_pool_awe_mem_mb", OPT_INNODB_BUFFER_POOL_AWE_MEM_MB,
"If Windows AWE is used, the size of InnoDB buffer pool allocated from the AWE memory.",
(gptr*) &innobase_buffer_pool_awe_mem_mb, (gptr*) &innobase_buffer_pool_awe_mem_mb, 0,