dict0types.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Data dictionary global types
  3. (c) 1996 Innobase Oy
  4. Created 1/8/1996 Heikki Tuuri
  5. *******************************************************/
  6. #ifndef dict0types_h
  7. #define dict0types_h
  8. typedef struct dict_sys_struct dict_sys_t;
  9. typedef struct dict_col_struct dict_col_t;
  10. typedef struct dict_field_struct dict_field_t;
  11. typedef struct dict_index_struct dict_index_t;
  12. typedef struct dict_tree_struct dict_tree_t;
  13. typedef struct dict_table_struct dict_table_t;
  14. typedef struct dict_foreign_struct dict_foreign_t;
  15. /* A cluster object is a table object with the type field set to
  16. DICT_CLUSTERED */
  17. typedef dict_table_t dict_cluster_t;
  18. typedef struct ind_node_struct ind_node_t;
  19. typedef struct tab_node_struct tab_node_t;
  20. #endif