Commit ff9bc9ba authored by unknown's avatar unknown

ha_innodb.cc:

  Reduce ibdata1 default size to 10M:autoextend


sql/ha_innodb.cc:
  Reduce ibdata1 default size to 10M:autoextend
parent 8fa6e0e7
...@@ -102,13 +102,14 @@ my_bool innobase_use_native_aio = FALSE; ...@@ -102,13 +102,14 @@ my_bool innobase_use_native_aio = FALSE;
my_bool innobase_fast_shutdown = TRUE; my_bool innobase_fast_shutdown = TRUE;
/* /*
Set default InnoDB size to 64M and let it be auto-extending. Thus users Set default InnoDB data file size to 10 MB and let it be
can use InnoDB without having to specify any startup options. auto-extending. Thus users can use InnoDB without having to
specify any startup options.
*/ */
/* innobase_data_file_path=ibdata:15,idata2:1,... */ /* 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; static char *internal_innobase_data_file_path=0;
/* The following counter is used to convey information to InnoDB /* The following counter is used to convey information to InnoDB
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment