~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/include/dict0boot.h

  • Committer: Brian Aker
  • Date: 2008-11-04 15:39:09 UTC
  • mfrom: (575.1.2 devel)
  • Revision ID: brian@tangent.org-20081104153909-c72hn65udxs1ccal
Merge of Monty's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
/**************************************************************************
24
24
Gets a pointer to the dictionary header and x-latches its page. */
25
 
 
 
25
UNIV_INTERN
26
26
dict_hdr_t*
27
27
dict_hdr_get(
28
28
/*=========*/
31
31
        mtr_t*  mtr);   /* in: mtr */
32
32
/**************************************************************************
33
33
Returns a new row, table, index, or tree id. */
34
 
 
 
34
UNIV_INTERN
35
35
dulint
36
36
dict_hdr_get_new_id(
37
37
/*================*/
63
63
/*********************************************************************
64
64
Initializes the data dictionary memory structures when the database is
65
65
started. This function is also called when the data dictionary is created. */
66
 
 
 
66
UNIV_INTERN
67
67
void
68
68
dict_boot(void);
69
69
/*===========*/
70
70
/*********************************************************************
71
71
Creates and initializes the data dictionary at the database creation. */
72
 
 
 
72
UNIV_INTERN
73
73
void
74
74
dict_create(void);
75
75
/*=============*/