summaryrefslogtreecommitdiff
path: root/sql/ha_innodb.cc
diff options
context:
space:
mode:
authorunknown <heikki@hundin.mysql.fi>2002-03-21 19:52:13 +0200
committerunknown <heikki@hundin.mysql.fi>2002-03-21 19:52:13 +0200
commita1e774d2778c75ca3ef42b66e84a5dbe57df4b55 (patch)
tree1ff0175b9211d5a60628a34f0cf8abe7ca1f1327 /sql/ha_innodb.cc
parentd62d98de7c0a930e27889885351cdf2591f146f9 (diff)
downloadmariadb-git-a1e774d2778c75ca3ef42b66e84a5dbe57df4b55.tar.gz
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
Diffstat (limited to 'sql/ha_innodb.cc')
-rw-r--r--sql/ha_innodb.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/sql/ha_innodb.cc b/sql/ha_innodb.cc
index 4cf06dfb731..669e94fffa4 100644
--- a/sql/ha_innodb.cc
+++ b/sql/ha_innodb.cc
@@ -88,12 +88,11 @@ char *innobase_unix_file_flush_method;
my_bool innobase_flush_log_at_trx_commit, innobase_log_archive,
innobase_use_native_aio, innobase_fast_shutdown;
-/*
- Set default InnoDB size to 64M, to let users use InnoDB without having
- to specify any startup options.
-*/
+/* Set the default InnoDB tablespace size to 16M, and let it be
+auto-extending. Thus users can use InnoDB without having to specify
+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;
/* The following counter is used to convey information to InnoDB