Commit 5106b63d authored by heikki@hundin.mysql.fi's avatar heikki@hundin.mysql.fi
Browse files

ha_innodb.cc:

  Reduce ibdata1 default size to 10M:autoextend
parent 0700b71b
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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