~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

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
typedef struct dict_sys_struct          dict_sys_t;
 
13
typedef struct dict_col_struct          dict_col_t;
 
14
typedef struct dict_field_struct        dict_field_t;
 
15
typedef struct dict_index_struct        dict_index_t;
 
16
typedef struct dict_table_struct        dict_table_t;
 
17
typedef struct dict_foreign_struct      dict_foreign_t;
 
18
 
 
19
/* A cluster object is a table object with the type field set to
 
20
DICT_CLUSTERED */
 
21
 
 
22
typedef dict_table_t                    dict_cluster_t;
 
23
 
 
24
typedef struct ind_node_struct          ind_node_t;
 
25
typedef struct tab_node_struct          tab_node_t;
 
26
 
 
27
#endif