MySQL 8.3.0
Source Code Documentation
foreign_keys.h
Go to the documentation of this file.
1/* Copyright (c) 2014, 2023, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is also distributed with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have included with MySQL.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License, version 2.0, for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
22
23#ifndef DD_TABLES__FOREIGN_KEYS_INCLUDED
24#define DD_TABLES__FOREIGN_KEYS_INCLUDED
25
26#include "sql/dd/impl/types/object_table_impl.h" // dd::Object_table_impl
27#include "sql/dd/object_id.h" // dd::Object_id
28#include "sql/dd/string_type.h"
29
30struct CHARSET_INFO;
31
32namespace dd {
33class Object_key;
34
35namespace tables {
36
37///////////////////////////////////////////////////////////////////////////
38
40 public:
41 static const Foreign_keys &instance();
42
43 static const CHARSET_INFO *name_collation();
44
58 NUMBER_OF_FIELDS // Always keep this entry at the end of the enum
59 };
60
62 INDEX_PK_ID = static_cast<uint>(Common_index::PK_ID),
66 };
67
69
71
73 Object_id schema_id, const String_type &foreign_key_name);
74
76
78 const String_type &referenced_catalog,
79 const String_type &referenced_schema,
80 const String_type &referenced_table);
81
82 /**
83 Check if schema contains foreign key with specified name.
84
85 @param thd Thread context.
86 @param schema_id Id of schema to be inspected.
87 @param foreign_key_name Name of the foreign key.
88 @param [out] exists Set to true if foreign key with
89 the name provided exists in the
90 schema, false otherwise.
91
92 @retval false No error.
93 @retval true Error.
94 */
95
96 static bool check_foreign_key_exists(THD *thd, Object_id schema_id,
97 const String_type &foreign_key_name,
98 bool *exists);
99};
100
101///////////////////////////////////////////////////////////////////////////
102
103} // namespace tables
104} // namespace dd
105
106#endif // DD_TABLES__FOREIGN_KEYS_INCLUDED
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:35
Definition: object_key.h:37
Definition: object_table_impl.h:35
Definition: foreign_keys.h:39
static Object_key * create_key_by_table_id(Object_id table_id)
Definition: foreign_keys.cc:128
static bool check_foreign_key_exists(THD *thd, Object_id schema_id, const String_type &foreign_key_name, bool *exists)
Check if schema contains foreign key with specified name.
Definition: foreign_keys.cc:144
static Object_key * create_key_by_referenced_name(const String_type &referenced_catalog, const String_type &referenced_schema, const String_type &referenced_table)
Definition: foreign_keys.cc:133
static Object_key * create_key_by_foreign_key_name(Object_id schema_id, const String_type &foreign_key_name)
Definition: foreign_keys.cc:121
enum_fields
Definition: foreign_keys.h:45
@ FIELD_UNIQUE_CONSTRAINT_NAME
Definition: foreign_keys.h:50
@ FIELD_ID
Definition: foreign_keys.h:46
@ NUMBER_OF_FIELDS
Definition: foreign_keys.h:58
@ FIELD_DELETE_RULE
Definition: foreign_keys.h:53
@ FIELD_OPTIONS
Definition: foreign_keys.h:57
@ FIELD_REFERENCED_TABLE
Definition: foreign_keys.h:56
@ FIELD_TABLE_ID
Definition: foreign_keys.h:48
@ FIELD_SCHEMA_ID
Definition: foreign_keys.h:47
@ FIELD_REFERENCED_TABLE_SCHEMA
Definition: foreign_keys.h:55
@ FIELD_REFERENCED_TABLE_CATALOG
Definition: foreign_keys.h:54
@ FIELD_UPDATE_RULE
Definition: foreign_keys.h:52
@ FIELD_NAME
Definition: foreign_keys.h:49
@ FIELD_MATCH_OPTION
Definition: foreign_keys.h:51
static const CHARSET_INFO * name_collation()
Definition: foreign_keys.cc:48
Foreign_keys()
Definition: foreign_keys.cc:54
static const Foreign_keys & instance()
Definition: foreign_keys.cc:41
enum_indexes
Definition: foreign_keys.h:61
@ INDEX_K_REF_CATALOG_REF_SCHEMA_REF_TABLE
Definition: foreign_keys.h:65
@ INDEX_PK_ID
Definition: foreign_keys.h:62
@ INDEX_UK_SCHEMA_ID_NAME
Definition: foreign_keys.h:63
@ INDEX_UK_TABLE_ID_NAME
Definition: foreign_keys.h:64
enum_foreign_keys
Definition: foreign_keys.h:68
@ FK_SCHEMA_ID
Definition: foreign_keys.h:68
The version of the current data dictionary table definitions.
Definition: dictionary_client.h:42
unsigned long long Object_id
Definition: object_id.h:30
Char_string_template< String_type_allocator > String_type
Definition: string_type.h:50
static int exists(node_address *name, node_list const *nodes, u_int with_uid)
Definition: node_list.cc:105
Definition: m_ctype.h:422