dict0load.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Loads to the memory cache database object definitions
  3. from dictionary tables
  4. (c) 1996 Innobase Oy
  5. Created 4/24/1996 Heikki Tuuri
  6. *******************************************************/
  7. #ifndef dict0load_h
  8. #define dict0load_h
  9. #include "univ.i"
  10. #include "dict0types.h"
  11. #include "ut0byte.h"
  12. /************************************************************************
  13. Loads a table definition and also all its index definitions, and also
  14. the cluster definition, if the table is a member in a cluster. */
  15. dict_table_t*
  16. dict_load_table(
  17. /*============*/
  18. /* out: table, NULL if does not exist */
  19. char* name); /* in: table name */
  20. /***************************************************************************
  21. Loads a table object based on the table id. */
  22. dict_table_t*
  23. dict_load_table_on_id(
  24. /*==================*/
  25. /* out: table; NULL if table does not exist */
  26. dulint table_id); /* in: table id */
  27. /************************************************************************
  28. This function is called when the database is booted.
  29. Loads system table index definitions except for the clustered index which
  30. is added to the dictionary cache at booting before calling this function. */
  31. void
  32. dict_load_sys_table(
  33. /*================*/
  34. dict_table_t* table); /* in: system table */
  35. #ifndef UNIV_NONINL
  36. #include "dict0load.ic"
  37. #endif
  38. #endif