-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathdd_table_share.h
107 lines (84 loc) · 3.45 KB
/
dd_table_share.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#ifndef DD_TABLE_SHARE_INCLUDED
#define DD_TABLE_SHARE_INCLUDED
/* Copyright (c) 2014, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <sys/types.h>
#include "field_types.h"
#include "my_inttypes.h"
#include "my_sys.h" // get_charset
#include "mysql/strings/m_ctype.h"
#include "sql/dd/object_id.h" // dd::Object_id
class Field;
class KEY_PART_INFO;
class THD;
struct TABLE_SHARE;
namespace dd {
class Table;
enum class enum_column_types;
} // namespace dd
/**
Read the table definition from the data-dictionary.
@param thd Thread handler
@param share Fill this with table definition
@param table_def A data-dictionary Table-object describing
table to be used for opening, instead of reading
information from DD.
@note
This function is called when the table definition is not cached in
table_def_cache.
The data is returned in 'share', which is allocated by
alloc_table_share().. The code assumes that share is initialized.
@returns
false OK
true Error
*/
bool open_table_def(THD *thd, TABLE_SHARE *share, const dd::Table &table_def);
/**
Read the table definition from the data-dictionary.
@param thd Thread handler
@param share Fill this with table definition
@param table_def A data-dictionary Table-object describing
table to be used for opening.
@note
This function is called from InnoDB, and will suppress errors
due to:
Invalid collations.
Missing FTS parser.
@returns
false OK
true Error
*/
bool open_table_def_suppress_invalid_meta_data(THD *thd, TABLE_SHARE *share,
const dd::Table &table_def);
/* Map from new to old field type. */
enum_field_types dd_get_old_field_type(dd::enum_column_types type);
static inline CHARSET_INFO *dd_get_mysql_charset(dd::Object_id dd_cs_id) {
return get_charset(static_cast<uint>(dd_cs_id), MYF(0));
}
/**
Check if the given key_part is suitable to be promoted as part of
primary key.
@param key_part - pointer to KEY_PART_INTO which we are checking.
@param table_field - Pointer to Field of column used by key_part.
@returns
true - Is suitable for primary key.
false - if not.
*/
bool is_suitable_for_primary_key(KEY_PART_INFO *key_part, Field *table_field);
#endif // DD_TABLE_SHARE_INCLUDED