summaryrefslogtreecommitdiff
path: root/sql/ha_innodb.cc
diff options
context:
space:
mode:
authorunknown <heikki@hundin.mysql.fi>2002-04-22 11:58:38 +0300
committerunknown <heikki@hundin.mysql.fi>2002-04-22 11:58:38 +0300
commit953e34874af8940b3319cbbb600cf9c9adbb8041 (patch)
tree82635ec4fae860c950fef21af36a8659a9841898 /sql/ha_innodb.cc
parent6840320d16ab1ee6703046a42d7e4017da8f0258 (diff)
downloadmariadb-git-953e34874af8940b3319cbbb600cf9c9adbb8041.tar.gz
ha_innodb.cc:
Reduce ibdata1 default size to 10M:autoextend sql/ha_innodb.cc: Reduce ibdata1 default size to 10M:autoextend
Diffstat (limited to 'sql/ha_innodb.cc')
-rw-r--r--sql/ha_innodb.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/sql/ha_innodb.cc b/sql/ha_innodb.cc
index aa8ce0f3c18..c85d74ce432 100644
--- a/sql/ha_innodb.cc
+++ b/sql/ha_innodb.cc
@@ -102,13 +102,14 @@ my_bool innobase_use_native_aio = FALSE;
my_bool innobase_fast_shutdown = TRUE;
/*
- Set default InnoDB size to 64M and let it be auto-extending. Thus users
- can use InnoDB without having to specify any startup options.
+ Set default InnoDB data file size to 10 MB and let it be
+ auto-extending. Thus users can use InnoDB without having to
+ specify any startup options.
*/
/* innobase_data_file_path=ibdata:15,idata2:1,... */
-char *innobase_data_file_path= (char*) "ibdata1:64M:autoextend";
+char *innobase_data_file_path= (char*) "ibdata1:10M:autoextend";
static char *internal_innobase_data_file_path=0;
/* The following counter is used to convey information to InnoDB