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

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. In a crash recovery we already have all the tablespace objects created.
  14. This function compares the space id information in the InnoDB data dictionary
  15. to what we already read with fil_load_single_table_tablespaces().
  16. In a normal startup, we create the tablespace objects for every table in
  17. InnoDB's data dictionary, if the corresponding .ibd file exists.
  18. We also scan the biggest space id, and store it to fil_system. */
  19. void
  20. dict_check_tablespaces_and_store_max_id(
  21. /*====================================*/
  22. ibool in_crash_recovery); /* in: are we doing a crash recovery */
  23. /************************************************************************
  24. Finds the first table name in the given database. */
  25. char*
  26. dict_get_first_table_name_in_db(
  27. /*============================*/
  28. /* out, own: table name, NULL if
  29. does not exist; the caller must free
  30. the memory in the string! */
  31. const char* name); /* in: database name which ends to '/' */
  32. /************************************************************************
  33. Loads a table definition and also all its index definitions, and also
  34. the cluster definition if the table is a member in a cluster. Also loads
  35. all foreign key constraints where the foreign key is in the table or where
  36. a foreign key references columns in this table. */
  37. dict_table_t*
  38. dict_load_table(
  39. /*============*/
  40. /* out: table, NULL if does not exist;
  41. if the table is stored in an .ibd file,
  42. but the file does not exist,
  43. then we set the ibd_file_missing flag TRUE
  44. in the table object we return */
  45. const char* name); /* in: table name in the
  46. databasename/tablename format */
  47. /***************************************************************************
  48. Loads a table object based on the table id. */
  49. dict_table_t*
  50. dict_load_table_on_id(
  51. /*==================*/
  52. /* out: table; NULL if table does not exist */
  53. dulint table_id); /* in: table id */
  54. /************************************************************************
  55. This function is called when the database is booted.
  56. Loads system table index definitions except for the clustered index which
  57. is added to the dictionary cache at booting before calling this function. */
  58. void
  59. dict_load_sys_table(
  60. /*================*/
  61. dict_table_t* table); /* in: system table */
  62. /***************************************************************************
  63. Loads foreign key constraints where the table is either the foreign key
  64. holder or where the table is referenced by a foreign key. Adds these
  65. constraints to the data dictionary. Note that we know that the dictionary
  66. cache already contains all constraints where the other relevant table is
  67. already in the dictionary cache. */
  68. ulint
  69. dict_load_foreigns(
  70. /*===============*/
  71. /* out: DB_SUCCESS or error code */
  72. const char* table_name, /* in: table name */
  73. ibool check_types); /* in: TRUE=check type compatibility */
  74. /************************************************************************
  75. Prints to the standard output information on all tables found in the data
  76. dictionary system table. */
  77. void
  78. dict_print(void);
  79. /*============*/
  80. #ifndef UNIV_NONINL
  81. #include "dict0load.ic"
  82. #endif
  83. #endif