Commit a1e774d2 authored by unknown's avatar unknown

ha_innodb.cc:

  Change the default innodb_data_file_path to create a 16M file and define it as auto-extending


sql/ha_innodb.cc:
  Change the default innodb_data_file_path to create a 16M file and define it as auto-extending
parent d62d98de
...@@ -88,12 +88,11 @@ char *innobase_unix_file_flush_method; ...@@ -88,12 +88,11 @@ char *innobase_unix_file_flush_method;
my_bool innobase_flush_log_at_trx_commit, innobase_log_archive, my_bool innobase_flush_log_at_trx_commit, innobase_log_archive,
innobase_use_native_aio, innobase_fast_shutdown; innobase_use_native_aio, innobase_fast_shutdown;
/* /* Set the default InnoDB tablespace size to 16M, and let it be
Set default InnoDB size to 64M, to let users use InnoDB without having auto-extending. Thus users can use InnoDB without having to specify
to specify any startup options. any startup options. */
*/
char *innobase_data_file_path= (char*) "ibdata1:64M"; char *innobase_data_file_path= (char*) "ibdata1:16M:autoextend";
char *internal_innobase_data_file_path=0; 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