summaryrefslogtreecommitdiff
path: root/innobase/dict
diff options
context:
space:
mode:
authorheikki@donna.mysql.fi <>2001-06-24 19:51:20 +0300
committerheikki@donna.mysql.fi <>2001-06-24 19:51:20 +0300
commit9187316332012a717fc873aeb6a80630eb25da75 (patch)
tree9702eab7cad20638a3cfd22f738755fda4d57c82 /innobase/dict
parentfbd725063f2cc1965faa3d55fc1df5880cb71429 (diff)
downloadmariadb-git-9187316332012a717fc873aeb6a80630eb25da75.tar.gz
sync0sync.c Do not use in-line assembly in GCC
srv0start.c Eliminate a deadlock of threads at startup row0mysql.c Several bug fixes row0umod.c Several bug fixes row0upd.c Several bug fixes os0file.c Revert back to fsync as default flush method log0recv.c Several bug fixes ibuf0ibuf.c Several bug fixes fsp0fsp.c Several bug fixes trx0undo.c Put some assertions to uncover possible bugs dict0boot.c Several bug fixes
Diffstat (limited to 'innobase/dict')
-rw-r--r--innobase/dict/dict0boot.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/innobase/dict/dict0boot.c b/innobase/dict/dict0boot.c
index 260e8d4c276..35fdfce16a6 100644
--- a/innobase/dict/dict0boot.c
+++ b/innobase/dict/dict0boot.c
@@ -313,6 +313,11 @@ dict_boot(void)
mtr_commit(&mtr);
/*-------------------------*/
+
+ /* Initialize the insert buffer table and index for each tablespace */
+
+ ibuf_init_at_db_start();
+
/* Load definitions of other indexes on system tables */
dict_load_sys_table(dict_sys->sys_tables);
@@ -320,10 +325,6 @@ dict_boot(void)
dict_load_sys_table(dict_sys->sys_indexes);
dict_load_sys_table(dict_sys->sys_fields);
- /* Initialize the insert buffer table and index for each tablespace */
-
- ibuf_init_at_db_start();
-
mutex_exit(&(dict_sys->mutex));
}