~jaypipes/drizzle/new-test-runner

« back to all changes in this revision

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

  • Committer: Jay Pipes
  • Date: 2008-12-11 17:52:34 UTC
  • mfrom: (482.16.152 testable)
  • Revision ID: jpipes@serialcoder-20081211175234-uqsfvmgxejvmellq
merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************
 
2
Data dictionary global types
 
3
 
 
4
(c) 1996 Innobase Oy
 
5
 
 
6
Created 1/8/1996 Heikki Tuuri
 
7
*******************************************************/
 
8
 
 
9
#ifndef dict0types_h
 
10
#define dict0types_h
 
11
 
 
12
#include "ut0list.h"
 
13
 
 
14
typedef struct dict_sys_struct          dict_sys_t;
 
15
typedef struct dict_col_struct          dict_col_t;
 
16
typedef struct dict_field_struct        dict_field_t;
 
17
typedef struct dict_index_struct        dict_index_t;
 
18
typedef struct dict_table_struct        dict_table_t;
 
19
typedef struct dict_foreign_struct      dict_foreign_t;
 
20
 
 
21
/* A cluster object is a table object with the type field set to
 
22
DICT_CLUSTERED */
 
23
 
 
24
typedef dict_table_t                    dict_cluster_t;
 
25
 
 
26
typedef struct ind_node_struct          ind_node_t;
 
27
typedef struct tab_node_struct          tab_node_t;
 
28
 
 
29
#endif