2001-02-17 13:19:19 +01:00
|
|
|
/******************************************************
|
|
|
|
Data dictionary creation and booting
|
|
|
|
|
|
|
|
(c) 1996 Innobase Oy
|
|
|
|
|
|
|
|
Created 4/18/1996 Heikki Tuuri
|
|
|
|
*******************************************************/
|
|
|
|
|
|
|
|
#include "dict0boot.h"
|
|
|
|
|
|
|
|
#ifdef UNIV_NONINL
|
|
|
|
#include "dict0boot.ic"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "dict0crea.h"
|
|
|
|
#include "btr0btr.h"
|
|
|
|
#include "dict0load.h"
|
|
|
|
#include "dict0load.h"
|
|
|
|
#include "trx0trx.h"
|
|
|
|
#include "srv0srv.h"
|
|
|
|
#include "ibuf0ibuf.h"
|
|
|
|
#include "buf0flu.h"
|
|
|
|
#include "log0recv.h"
|
|
|
|
#include "os0file.h"
|
|
|
|
|
2001-10-30 16:38:44 +01:00
|
|
|
/**************************************************************************
|
|
|
|
Gets a pointer to the dictionary header and x-latches its page. */
|
|
|
|
|
|
|
|
dict_hdr_t*
|
|
|
|
dict_hdr_get(
|
|
|
|
/*=========*/
|
|
|
|
/* out: pointer to the dictionary header,
|
|
|
|
page x-latched */
|
|
|
|
mtr_t* mtr) /* in: mtr */
|
|
|
|
{
|
|
|
|
dict_hdr_t* header;
|
|
|
|
|
|
|
|
ut_ad(mtr);
|
|
|
|
|
|
|
|
header = DICT_HDR + buf_page_get(DICT_HDR_SPACE, DICT_HDR_PAGE_NO,
|
|
|
|
RW_X_LATCH, mtr);
|
2004-03-12 16:14:51 +01:00
|
|
|
#ifdef UNIV_SYNC_DEBUG
|
2001-10-30 16:38:44 +01:00
|
|
|
buf_page_dbg_add_level(header, SYNC_DICT_HEADER);
|
2004-03-12 16:14:51 +01:00
|
|
|
#endif /* UNIV_SYNC_DEBUG */
|
2001-10-30 16:38:44 +01:00
|
|
|
return(header);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
Returns a new table, index, or tree id. */
|
|
|
|
|
|
|
|
dulint
|
|
|
|
dict_hdr_get_new_id(
|
|
|
|
/*================*/
|
|
|
|
/* out: the new id */
|
|
|
|
ulint type) /* in: DICT_HDR_ROW_ID, ... */
|
|
|
|
{
|
|
|
|
dict_hdr_t* dict_hdr;
|
|
|
|
dulint id;
|
|
|
|
mtr_t mtr;
|
|
|
|
|
|
|
|
ut_ad((type == DICT_HDR_TABLE_ID) || (type == DICT_HDR_INDEX_ID)
|
|
|
|
|| (type == DICT_HDR_MIX_ID));
|
|
|
|
|
|
|
|
mtr_start(&mtr);
|
|
|
|
|
|
|
|
dict_hdr = dict_hdr_get(&mtr);
|
|
|
|
|
2004-03-12 16:44:25 +01:00
|
|
|
id = mtr_read_dulint(dict_hdr + type, &mtr);
|
2001-10-30 16:38:44 +01:00
|
|
|
|
|
|
|
/* Add some dummy code here because otherwise pgcc seems to
|
|
|
|
compile wrong */
|
|
|
|
|
|
|
|
if (0 == ut_dulint_cmp(id, ut_dulint_max)) {
|
InnoDB: send diagnostic output to stderr or files
instead of stdout or fixed-size memory buffers
innobase/btr/btr0btr.c:
Output to stderr; quote table and index names
innobase/btr/btr0cur.c:
Output to stderr; quote table and index names
innobase/btr/btr0sea.c:
Output to stderr
innobase/buf/buf0buf.c:
Output to stderr; quote table and index names
innobase/buf/buf0flu.c:
Output to stderr
innobase/buf/buf0lru.c:
Output to stderr
innobase/buf/buf0rea.c:
Output to stderr
innobase/data/data0data.c:
Remove dtuple_validate() unless #ifdef UNIV_DEBUG
Remove unnecessary sprintf() calls
Output to stderr
innobase/data/data0type.c:
Output to stderr
innobase/dict/dict0boot.c:
Remove dummy call to printf()
innobase/dict/dict0crea.c:
Output diagnostic information to stream, not to memory
innobase/dict/dict0dict.c:
Output diagnostics to a file, not to a memory buffer
innobase/dict/dict0load.c:
Output to stderr; quote table and index names
innobase/eval/eval0eval.c:
Output to stderr
innobase/fil/fil0fil.c:
Output to stderr
innobase/fsp/fsp0fsp.c:
Output to stderr
Avoid sprintf()
innobase/fut/fut0lst.c:
Output to stderr
innobase/ha/ha0ha.c:
Output to stream, not to memory buffer
innobase/ibuf/ibuf0ibuf.c:
Output to stderr
Avoid sprintf()
innobase/include/buf0buf.h:
Output to stream, not to memory buffer
innobase/include/buf0buf.ic:
Use %p for displaying pointers
innobase/include/data0data.h:
Remove dtuple_sprintf()
innobase/include/dict0dict.h:
Output to stream, not to memory buffer
innobase/include/ha0ha.h:
Output to stream, not to memory buffer
innobase/include/ibuf0ibuf.h:
Output to stream, not to memory buffer
innobase/include/lock0lock.h:
Output to stream, not to memory buffer
innobase/include/log0log.h:
Output to stream, not to memory buffer
innobase/include/mtr0log.ic:
Output to stderr
Display pointers with %p
innobase/include/os0file.h:
Output to stream, not to memory buffer
innobase/include/rem0rec.h:
Remove rec_sprintf()
innobase/include/rem0rec.ic:
Output to stderr
innobase/include/row0sel.ic:
Output to stderr
innobase/include/row0upd.ic:
Quote table and index names
innobase/include/srv0srv.h:
Remove srv_sprintf_innodb_monitor()
innobase/include/sync0arr.h:
Output to stream, not to memory buffer
innobase/include/sync0sync.h:
Output to stream, not to memory buffer
innobase/include/trx0sys.h:
Output to stderr
innobase/include/trx0trx.h:
Output to stream, not to memory buffer
innobase/include/ut0ut.h:
Remove ut_sprintf_buf()
Add ut_print_name(), ut_print_namel() and ut_copy_file()
innobase/lock/lock0lock.c:
Output to stream, not to memory buffer
innobase/log/log0log.c:
Output to stderr
innobase/log/log0recv.c:
Output to stderr
innobase/mem/mem0dbg.c:
Output to stderr
innobase/mtr/mtr0log.c:
Display pointers with %p
innobase/mtr/mtr0mtr.c:
Output to stderr
innobase/os/os0file.c:
Output to stream, not to memory buffer
innobase/os/os0proc.c:
Output to stderr
innobase/os/os0thread.c:
Output to stderr
innobase/page/page0cur.c:
Output to stderr
innobase/page/page0page.c:
Avoid sprintf()
Output to stderr instead of stdout
innobase/pars/pars0opt.c:
Output to stderr instead of stdout
innobase/rem/rem0rec.c:
Remove rec_sprintf()
Output to stderr instead of stdout
innobase/row/row0ins.c:
Output diagnostics to stream instead of memory buffer
innobase/row/row0mysql.c:
Output to stderr instead of stdout
Quote table and index names
innobase/row/row0purge.c:
Output to stderr instead of stdout
innobase/row/row0row.c:
Quote table and index names
innobase/row/row0sel.c:
Output to stderr instead of stdout
Quote table and index names
innobase/row/row0umod.c:
Avoid sprintf()
Quote table and index names
innobase/row/row0undo.c:
Output to stderr instead of stdout
innobase/row/row0upd.c:
Avoid sprintf()
innobase/srv/srv0srv.c:
Output to stderr instead of stdout
innobase/srv/srv0start.c:
Handle srv_monitor_file
Make some global variables static
innobase/sync/sync0arr.c:
Output to stderr instead of stdout
Output to stream instead of memory buffer
innobase/sync/sync0rw.c:
Output to stderr instead of stdout
innobase/sync/sync0sync.c:
Output to stderr instead of stdout
Output to stream instead of memory buffer
innobase/trx/trx0purge.c:
Output to stderr instead of stdout
innobase/trx/trx0rec.c:
Quote index and table names
Avoid sprintf()
innobase/trx/trx0roll.c:
Quote identifier names
Output to stderr instead of stdout
innobase/trx/trx0sys.c:
Output to stderr instead of stdout
innobase/trx/trx0trx.c:
Output to stream instead of memory buffer
innobase/trx/trx0undo.c:
Output to stderr instead of stdout
innobase/ut/ut0ut.c:
Declare mysql_get_identifier_quote_char()
Remove ut_sprintf_buf()
Add ut_print_name() and ut_print_namel()
Add ut_copy_file()
sql/ha_innodb.cc:
innobase_mysql_print_thd(): output to stream, not to memory buffer
Add mysql_get_identifier_quote_char()
Remove unused function innobase_print_error()
Display pointers with %p
Buffer InnoDB output via files, not via statically allocated memory
2004-04-06 15:14:43 +02:00
|
|
|
/* TO DO: remove this code, or make it conditional */
|
|
|
|
ut_dbg_null_ptr = 0;
|
2001-10-30 16:38:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
id = ut_dulint_add(id, 1);
|
|
|
|
|
2004-03-12 16:44:25 +01:00
|
|
|
mlog_write_dulint(dict_hdr + type, id, &mtr);
|
2001-10-30 16:38:44 +01:00
|
|
|
|
|
|
|
mtr_commit(&mtr);
|
|
|
|
|
|
|
|
return(id);
|
|
|
|
}
|
|
|
|
|
2001-02-17 13:19:19 +01:00
|
|
|
/**************************************************************************
|
|
|
|
Writes the current value of the row id counter to the dictionary header file
|
|
|
|
page. */
|
|
|
|
|
|
|
|
void
|
|
|
|
dict_hdr_flush_row_id(void)
|
|
|
|
/*=======================*/
|
|
|
|
{
|
|
|
|
dict_hdr_t* dict_hdr;
|
|
|
|
dulint id;
|
|
|
|
mtr_t mtr;
|
|
|
|
|
2004-03-12 16:14:51 +01:00
|
|
|
#ifdef UNIV_SYNC_DEBUG
|
2001-02-17 13:19:19 +01:00
|
|
|
ut_ad(mutex_own(&(dict_sys->mutex)));
|
2004-03-12 16:14:51 +01:00
|
|
|
#endif /* UNIV_SYNC_DEBUG */
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
id = dict_sys->row_id;
|
|
|
|
|
|
|
|
mtr_start(&mtr);
|
|
|
|
|
|
|
|
dict_hdr = dict_hdr_get(&mtr);
|
|
|
|
|
2004-03-12 16:44:25 +01:00
|
|
|
mlog_write_dulint(dict_hdr + DICT_HDR_ROW_ID, id, &mtr);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
mtr_commit(&mtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
Creates the file page for the dictionary header. This function is
|
|
|
|
called only at the database creation. */
|
|
|
|
static
|
|
|
|
ibool
|
|
|
|
dict_hdr_create(
|
|
|
|
/*============*/
|
|
|
|
/* out: TRUE if succeed */
|
|
|
|
mtr_t* mtr) /* in: mtr */
|
|
|
|
{
|
|
|
|
dict_hdr_t* dict_header;
|
|
|
|
ulint hdr_page_no;
|
|
|
|
ulint root_page_no;
|
|
|
|
page_t* page;
|
|
|
|
|
|
|
|
ut_ad(mtr);
|
|
|
|
|
|
|
|
/* Create the dictionary header file block in a new, allocated file
|
|
|
|
segment in the system tablespace */
|
|
|
|
page = fseg_create(DICT_HDR_SPACE, 0,
|
|
|
|
DICT_HDR + DICT_HDR_FSEG_HEADER, mtr);
|
|
|
|
|
|
|
|
hdr_page_no = buf_frame_get_page_no(page);
|
|
|
|
|
|
|
|
ut_a(DICT_HDR_PAGE_NO == hdr_page_no);
|
|
|
|
|
|
|
|
dict_header = dict_hdr_get(mtr);
|
|
|
|
|
|
|
|
/* Start counting row, table, index, and tree ids from
|
|
|
|
DICT_HDR_FIRST_ID */
|
|
|
|
mlog_write_dulint(dict_header + DICT_HDR_ROW_ID,
|
2004-03-12 16:44:25 +01:00
|
|
|
ut_dulint_create(0, DICT_HDR_FIRST_ID), mtr);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
mlog_write_dulint(dict_header + DICT_HDR_TABLE_ID,
|
2004-03-12 16:44:25 +01:00
|
|
|
ut_dulint_create(0, DICT_HDR_FIRST_ID), mtr);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
mlog_write_dulint(dict_header + DICT_HDR_INDEX_ID,
|
2004-03-12 16:44:25 +01:00
|
|
|
ut_dulint_create(0, DICT_HDR_FIRST_ID), mtr);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
mlog_write_dulint(dict_header + DICT_HDR_MIX_ID,
|
2004-03-12 16:44:25 +01:00
|
|
|
ut_dulint_create(0, DICT_HDR_FIRST_ID), mtr);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
/* Create the B-tree roots for the clustered indexes of the basic
|
|
|
|
system tables */
|
|
|
|
|
|
|
|
/*--------------------------*/
|
|
|
|
root_page_no = btr_create(DICT_CLUSTERED | DICT_UNIQUE,
|
|
|
|
DICT_HDR_SPACE, DICT_TABLES_ID, mtr);
|
|
|
|
if (root_page_no == FIL_NULL) {
|
|
|
|
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
mlog_write_ulint(dict_header + DICT_HDR_TABLES, root_page_no,
|
|
|
|
MLOG_4BYTES, mtr);
|
|
|
|
/*--------------------------*/
|
|
|
|
root_page_no = btr_create(DICT_UNIQUE, DICT_HDR_SPACE,
|
|
|
|
DICT_TABLE_IDS_ID, mtr);
|
|
|
|
if (root_page_no == FIL_NULL) {
|
|
|
|
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
mlog_write_ulint(dict_header + DICT_HDR_TABLE_IDS, root_page_no,
|
|
|
|
MLOG_4BYTES, mtr);
|
|
|
|
/*--------------------------*/
|
|
|
|
root_page_no = btr_create(DICT_CLUSTERED | DICT_UNIQUE,
|
|
|
|
DICT_HDR_SPACE, DICT_COLUMNS_ID, mtr);
|
|
|
|
if (root_page_no == FIL_NULL) {
|
|
|
|
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
mlog_write_ulint(dict_header + DICT_HDR_COLUMNS, root_page_no,
|
|
|
|
MLOG_4BYTES, mtr);
|
|
|
|
/*--------------------------*/
|
|
|
|
root_page_no = btr_create(DICT_CLUSTERED | DICT_UNIQUE,
|
|
|
|
DICT_HDR_SPACE, DICT_INDEXES_ID, mtr);
|
|
|
|
if (root_page_no == FIL_NULL) {
|
|
|
|
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
mlog_write_ulint(dict_header + DICT_HDR_INDEXES, root_page_no,
|
|
|
|
MLOG_4BYTES, mtr);
|
|
|
|
/*--------------------------*/
|
|
|
|
root_page_no = btr_create(DICT_CLUSTERED | DICT_UNIQUE,
|
|
|
|
DICT_HDR_SPACE, DICT_FIELDS_ID, mtr);
|
|
|
|
if (root_page_no == FIL_NULL) {
|
|
|
|
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
mlog_write_ulint(dict_header + DICT_HDR_FIELDS, root_page_no,
|
|
|
|
MLOG_4BYTES, mtr);
|
|
|
|
/*--------------------------*/
|
|
|
|
|
|
|
|
return(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
Initializes the data dictionary memory structures when the database is
|
|
|
|
started. This function is also called when the data dictionary is created. */
|
|
|
|
|
|
|
|
void
|
|
|
|
dict_boot(void)
|
|
|
|
/*===========*/
|
|
|
|
{
|
|
|
|
dict_table_t* table;
|
|
|
|
dict_index_t* index;
|
|
|
|
dict_hdr_t* dict_hdr;
|
|
|
|
mtr_t mtr;
|
|
|
|
|
|
|
|
mtr_start(&mtr);
|
|
|
|
|
|
|
|
/* Create the hash tables etc. */
|
|
|
|
dict_init();
|
|
|
|
|
|
|
|
mutex_enter(&(dict_sys->mutex));
|
|
|
|
|
|
|
|
/* Get the dictionary header */
|
|
|
|
dict_hdr = dict_hdr_get(&mtr);
|
|
|
|
|
|
|
|
/* Because we only write new row ids to disk-based data structure
|
|
|
|
(dictionary header) when it is divisible by
|
|
|
|
DICT_HDR_ROW_ID_WRITE_MARGIN, in recovery we will not recover
|
|
|
|
the latest value of the row id counter. Therefore we advance
|
|
|
|
the counter at the database startup to avoid overlapping values.
|
|
|
|
Note that when a user after database startup first time asks for
|
|
|
|
a new row id, then because the counter is now divisible by
|
|
|
|
..._MARGIN, it will immediately be updated to the disk-based
|
|
|
|
header. */
|
|
|
|
|
|
|
|
dict_sys->row_id = ut_dulint_add(
|
|
|
|
ut_dulint_align_up(
|
|
|
|
mtr_read_dulint(dict_hdr + DICT_HDR_ROW_ID,
|
2004-03-12 16:44:25 +01:00
|
|
|
&mtr),
|
2001-02-17 13:19:19 +01:00
|
|
|
DICT_HDR_ROW_ID_WRITE_MARGIN),
|
|
|
|
DICT_HDR_ROW_ID_WRITE_MARGIN);
|
|
|
|
|
|
|
|
/* Insert into the dictionary cache the descriptions of the basic
|
|
|
|
system tables */
|
|
|
|
/*-------------------------*/
|
2004-05-27 14:27:43 +02:00
|
|
|
table = dict_mem_table_create("SYS_TABLES", DICT_HDR_SPACE,8);
|
|
|
|
|
|
|
|
dict_mem_table_add_col(table, "NAME", DATA_BINARY, 0, 0, 0);
|
|
|
|
dict_mem_table_add_col(table, "ID", DATA_BINARY, 0, 0, 0);
|
|
|
|
dict_mem_table_add_col(table, "N_COLS", DATA_INT, 0, 4, 0);
|
|
|
|
dict_mem_table_add_col(table, "TYPE", DATA_INT, 0, 4, 0);
|
|
|
|
dict_mem_table_add_col(table, "MIX_ID", DATA_BINARY, 0, 0, 0);
|
|
|
|
dict_mem_table_add_col(table, "MIX_LEN", DATA_INT, 0, 4, 0);
|
|
|
|
dict_mem_table_add_col(table, "CLUSTER_NAME", DATA_BINARY, 0, 0, 0);
|
|
|
|
dict_mem_table_add_col(table, "SPACE", DATA_INT, 0, 4, 0);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
table->id = DICT_TABLES_ID;
|
|
|
|
|
|
|
|
dict_table_add_to_cache(table);
|
|
|
|
dict_sys->sys_tables = table;
|
|
|
|
|
2004-05-27 14:27:43 +02:00
|
|
|
index = dict_mem_index_create("SYS_TABLES", "CLUST_IND",
|
|
|
|
DICT_HDR_SPACE, DICT_UNIQUE | DICT_CLUSTERED, 1);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
2004-05-27 14:27:43 +02:00
|
|
|
dict_mem_index_add_field(index, "NAME", 0, 0);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
index->page_no = mtr_read_ulint(dict_hdr + DICT_HDR_TABLES,
|
|
|
|
MLOG_4BYTES, &mtr);
|
|
|
|
index->id = DICT_TABLES_ID;
|
|
|
|
|
|
|
|
ut_a(dict_index_add_to_cache(table, index));
|
|
|
|
/*-------------------------*/
|
2004-05-27 14:27:43 +02:00
|
|
|
index = dict_mem_index_create("SYS_TABLES", "ID_IND",
|
|
|
|
DICT_HDR_SPACE, DICT_UNIQUE, 1);
|
|
|
|
dict_mem_index_add_field(index, "ID", 0, 0);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
index->page_no = mtr_read_ulint(dict_hdr + DICT_HDR_TABLE_IDS,
|
|
|
|
MLOG_4BYTES, &mtr);
|
|
|
|
index->id = DICT_TABLE_IDS_ID;
|
|
|
|
ut_a(dict_index_add_to_cache(table, index));
|
|
|
|
/*-------------------------*/
|
2004-05-27 14:27:43 +02:00
|
|
|
table = dict_mem_table_create("SYS_COLUMNS",DICT_HDR_SPACE,7);
|
|
|
|
|
|
|
|
dict_mem_table_add_col(table, "TABLE_ID", DATA_BINARY,0,0,0);
|
|
|
|
dict_mem_table_add_col(table, "POS", DATA_INT, 0, 4, 0);
|
|
|
|
dict_mem_table_add_col(table, "NAME", DATA_BINARY, 0, 0, 0);
|
|
|
|
dict_mem_table_add_col(table, "MTYPE", DATA_INT, 0, 4, 0);
|
|
|
|
dict_mem_table_add_col(table, "PRTYPE", DATA_INT, 0, 4, 0);
|
|
|
|
dict_mem_table_add_col(table, "LEN", DATA_INT, 0, 4, 0);
|
|
|
|
dict_mem_table_add_col(table, "PREC", DATA_INT, 0, 4, 0);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
table->id = DICT_COLUMNS_ID;
|
|
|
|
|
|
|
|
dict_table_add_to_cache(table);
|
|
|
|
dict_sys->sys_columns = table;
|
|
|
|
|
2004-05-27 14:27:43 +02:00
|
|
|
index = dict_mem_index_create("SYS_COLUMNS", "CLUST_IND",
|
|
|
|
DICT_HDR_SPACE, DICT_UNIQUE | DICT_CLUSTERED, 2);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
2004-05-27 14:27:43 +02:00
|
|
|
dict_mem_index_add_field(index, "TABLE_ID", 0, 0);
|
|
|
|
dict_mem_index_add_field(index, "POS", 0, 0);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
index->page_no = mtr_read_ulint(dict_hdr + DICT_HDR_COLUMNS,
|
|
|
|
MLOG_4BYTES, &mtr);
|
|
|
|
index->id = DICT_COLUMNS_ID;
|
|
|
|
ut_a(dict_index_add_to_cache(table, index));
|
|
|
|
/*-------------------------*/
|
2004-05-27 14:27:43 +02:00
|
|
|
table = dict_mem_table_create("SYS_INDEXES",DICT_HDR_SPACE,7);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
2004-05-27 14:27:43 +02:00
|
|
|
dict_mem_table_add_col(table, "TABLE_ID", DATA_BINARY, 0,0,0);
|
|
|
|
dict_mem_table_add_col(table, "ID", DATA_BINARY, 0, 0, 0);
|
|
|
|
dict_mem_table_add_col(table, "NAME", DATA_BINARY, 0, 0, 0);
|
|
|
|
dict_mem_table_add_col(table, "N_FIELDS", DATA_INT, 0, 4, 0);
|
|
|
|
dict_mem_table_add_col(table, "TYPE", DATA_INT, 0, 4, 0);
|
|
|
|
dict_mem_table_add_col(table, "SPACE", DATA_INT, 0, 4, 0);
|
|
|
|
dict_mem_table_add_col(table, "PAGE_NO", DATA_INT, 0, 4, 0);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
/* The '+ 2' below comes from the 2 system fields */
|
2003-11-25 14:11:01 +01:00
|
|
|
#if DICT_SYS_INDEXES_PAGE_NO_FIELD != 6 + 2
|
|
|
|
#error "DICT_SYS_INDEXES_PAGE_NO_FIELD != 6 + 2"
|
|
|
|
#endif
|
|
|
|
#if DICT_SYS_INDEXES_SPACE_NO_FIELD != 5 + 2
|
|
|
|
#error "DICT_SYS_INDEXES_SPACE_NO_FIELD != 5 + 2"
|
|
|
|
#endif
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
table->id = DICT_INDEXES_ID;
|
|
|
|
dict_table_add_to_cache(table);
|
|
|
|
dict_sys->sys_indexes = table;
|
|
|
|
|
2004-05-27 14:27:43 +02:00
|
|
|
index = dict_mem_index_create("SYS_INDEXES", "CLUST_IND",
|
|
|
|
DICT_HDR_SPACE, DICT_UNIQUE | DICT_CLUSTERED, 2);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
2004-05-27 14:27:43 +02:00
|
|
|
dict_mem_index_add_field(index, "TABLE_ID", 0, 0);
|
|
|
|
dict_mem_index_add_field(index, "ID", 0, 0);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
index->page_no = mtr_read_ulint(dict_hdr + DICT_HDR_INDEXES,
|
|
|
|
MLOG_4BYTES, &mtr);
|
|
|
|
index->id = DICT_INDEXES_ID;
|
|
|
|
ut_a(dict_index_add_to_cache(table, index));
|
|
|
|
/*-------------------------*/
|
2004-05-27 14:27:43 +02:00
|
|
|
table = dict_mem_table_create("SYS_FIELDS", DICT_HDR_SPACE,3);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
2004-05-27 14:27:43 +02:00
|
|
|
dict_mem_table_add_col(table, "INDEX_ID", DATA_BINARY, 0,0,0);
|
|
|
|
dict_mem_table_add_col(table, "POS", DATA_INT, 0, 4, 0);
|
|
|
|
dict_mem_table_add_col(table, "COL_NAME", DATA_BINARY, 0,0,0);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
table->id = DICT_FIELDS_ID;
|
|
|
|
dict_table_add_to_cache(table);
|
|
|
|
dict_sys->sys_fields = table;
|
|
|
|
|
2004-05-27 14:27:43 +02:00
|
|
|
index = dict_mem_index_create("SYS_FIELDS", "CLUST_IND",
|
|
|
|
DICT_HDR_SPACE, DICT_UNIQUE | DICT_CLUSTERED, 2);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
2004-05-27 14:27:43 +02:00
|
|
|
dict_mem_index_add_field(index, "INDEX_ID", 0, 0);
|
|
|
|
dict_mem_index_add_field(index, "POS", 0, 0);
|
2001-02-17 13:19:19 +01:00
|
|
|
|
|
|
|
index->page_no = mtr_read_ulint(dict_hdr + DICT_HDR_FIELDS,
|
|
|
|
MLOG_4BYTES, &mtr);
|
|
|
|
index->id = DICT_FIELDS_ID;
|
|
|
|
ut_a(dict_index_add_to_cache(table, index));
|
|
|
|
|
|
|
|
mtr_commit(&mtr);
|
|
|
|
/*-------------------------*/
|
2001-06-24 18:51:20 +02:00
|
|
|
|
|
|
|
/* Initialize the insert buffer table and index for each tablespace */
|
|
|
|
|
|
|
|
ibuf_init_at_db_start();
|
|
|
|
|
2001-02-17 13:19:19 +01:00
|
|
|
/* Load definitions of other indexes on system tables */
|
|
|
|
|
|
|
|
dict_load_sys_table(dict_sys->sys_tables);
|
|
|
|
dict_load_sys_table(dict_sys->sys_columns);
|
|
|
|
dict_load_sys_table(dict_sys->sys_indexes);
|
|
|
|
dict_load_sys_table(dict_sys->sys_fields);
|
|
|
|
|
|
|
|
mutex_exit(&(dict_sys->mutex));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
Inserts the basic system table data into themselves in the database
|
|
|
|
creation. */
|
|
|
|
static
|
|
|
|
void
|
|
|
|
dict_insert_initial_data(void)
|
|
|
|
/*==========================*/
|
|
|
|
{
|
|
|
|
/* Does nothing yet */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
Creates and initializes the data dictionary at the database creation. */
|
|
|
|
|
|
|
|
void
|
|
|
|
dict_create(void)
|
|
|
|
/*=============*/
|
|
|
|
{
|
|
|
|
mtr_t mtr;
|
|
|
|
|
|
|
|
mtr_start(&mtr);
|
|
|
|
|
|
|
|
dict_hdr_create(&mtr);
|
|
|
|
|
|
|
|
mtr_commit(&mtr);
|
|
|
|
|
|
|
|
dict_boot();
|
|
|
|
|
|
|
|
dict_insert_initial_data();
|
|
|
|
}
|