diff options
author | unknown <heikki@hundin.mysql.fi> | 2002-07-03 03:29:30 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2002-07-03 03:29:30 +0300 |
commit | 6f1f9d5c743d94326c486d49089739fc87248847 (patch) | |
tree | 889b674fd57e0d06f0f4624ff492bf0adc869b49 /sql | |
parent | 12fae523c30af4eff48d8f89bac65cb2b30c06bd (diff) | |
download | mariadb-git-6f1f9d5c743d94326c486d49089739fc87248847.tar.gz |
ha_innobase.cc:
Clarify the setting of innodb_data_file_path in my.cnf: it is in the [mysqld] section
sql/ha_innobase.cc:
Clarify the setting of innodb_data_file_path in my.cnf: it is in the [mysqld] section
Diffstat (limited to 'sql')
-rw-r--r-- | sql/ha_innobase.cc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sql/ha_innobase.cc b/sql/ha_innobase.cc index 761d74f49b0..3f23a28c62b 100644 --- a/sql/ha_innobase.cc +++ b/sql/ha_innobase.cc @@ -394,7 +394,7 @@ innobase_init(void) bool ret; DBUG_ENTER("innobase_init"); - + os_innodb_umask = (ulint)my_umask; if (specialflag & SPECIAL_NO_PRIOR) { @@ -418,8 +418,9 @@ innobase_init(void) "If you do not want to use transactional InnoDB tables, add a line\n" "skip-innodb\n" "to the [mysqld] section of init parameters in your my.cnf\n" - "or my.ini. If you want to use InnoDB tables, add for example,\n" - "innodb_data_file_path = ibdata1:30M:autoextend\n" + "or my.ini. If you want to use InnoDB tables, add to the [mysqld]\n" + "section, for example,\n" + "innodb_data_file_path = ibdata1:10M:autoextend\n" "But to get good performance you should adjust for your hardware\n" "the InnoDB startup options listed in section 2 at\n" "http://www.innodb.com/ibman.html\n"); @@ -478,6 +479,9 @@ innobase_init(void) srv_use_native_aio = 0; srv_pool_size = (ulint) innobase_buffer_pool_size; + + printf("Buffer pool size set to %lu\n", srv_pool_size); + srv_mem_pool_size = (ulint) innobase_additional_mem_pool_size; srv_n_file_io_threads = (ulint) innobase_file_io_threads; |