MySQL 8.0.37
Source Code Documentation
triggers.h
Go to the documentation of this file.
1/* Copyright (c) 2016, 2024, 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 designed to work 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 either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef DD_TABLES__TRIGGERS_INCLUDED
25#define DD_TABLES__TRIGGERS_INCLUDED
26
27#include <string>
28
31#include "sql/dd/impl/types/object_table_impl.h" // dd::Object_table_i...
32#include "sql/dd/impl/types/trigger_impl.h" // dd::Trigger_impl
33#include "sql/dd/object_id.h"
34#include "sql/dd/string_type.h"
35
36class THD;
37
38namespace dd {
39class Object_key;
40} // namespace dd
41
42namespace dd {
43namespace tables {
44
45///////////////////////////////////////////////////////////////////////////
46
47class Triggers : virtual public Object_table_impl {
48 public:
49 static const Triggers &instance() {
50 static Triggers *s_instance = new Triggers();
51 return *s_instance;
52 }
53
54 static const CHARSET_INFO *name_collation();
55
74 NUMBER_OF_FIELDS // Always keep this entry at the end of the enum
75 };
76
85 };
86
93 };
94
95 Triggers();
96
97 /**
98 Create a key to find all triggers for a given schema.
99
100 @param schema_id Object_id of the schema.
101
102 @returns Pointer to Object_key.
103 */
104
106
107 /**
108 Create a key to find all triggers for a given table.
109
110 @param table_id Object_id of the table.
111
112 @returns Pointer to Object_key.
113 */
114
116
117 /**
118 Find table's Object_id for a given trigger name.
119
120 @param thd Thread
121 @param schema_id Object_id of schema in which the trigger exists.
122 @param trigger_name Name of trigger we are search for.
123 @param oid [out] The Object_id of trigger.
124
125 @returns
126 false on success.
127 true upon failure.
128 */
129
130 static bool get_trigger_table_id(THD *thd, Object_id schema_id,
131 const String_type &trigger_name,
132 Object_id *oid);
133
134 /**
135 Create a key to find all triggers for a given definer.
136
137 @param definer Name of the definer.
138
139 @returns Pointer to Object_key.
140 */
141 static Object_key *create_key_by_definer(const String_type &definer);
142
143 private:
144 /**
145 Create a key to find a trigger by schema_id and trigger name.
146
147 @param schema_id Object_id of the table.
148 @param trigger_name Name of trigger.
149
150 @returns Pointer to Object_key.
151 */
153 const char *trigger_name);
154
155 /**
156 Get the table id from the record.
157
158 @param r const Reference to the Raw_record.
159
160 @returns Object_id of the table.
161 */
162
163 static Object_id read_table_id(const Raw_record &r);
164};
165
166///////////////////////////////////////////////////////////////////////////
167
168} // namespace tables
169} // namespace dd
170
171#endif // DD_TABLES__TRIGGERS_INCLUDED
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:34
Definition: object_key.h:38
Definition: object_table_impl.h:36
Definition: raw_record.h:46
Definition: triggers.h:47
enum_foreign_keys
Definition: triggers.h:87
@ FK_SCHEMA_ID
Definition: triggers.h:88
@ FK_CLIENT_COLLATION_ID
Definition: triggers.h:90
@ FK_CONNECTION_COLLATION_ID
Definition: triggers.h:91
@ FK_TABLE_ID
Definition: triggers.h:89
@ FK_SCHEMA_COLLATION_ID
Definition: triggers.h:92
static Object_key * create_key_by_schema_id(Object_id schema_id)
Create a key to find all triggers for a given schema.
Definition: triggers.cc:131
static Object_key * create_key_by_trigger_name(Object_id schema_id, const char *trigger_name)
Create a key to find a trigger by schema_id and trigger name.
Definition: triggers.cc:147
static Object_key * create_key_by_table_id(Object_id table_id)
Create a key to find all triggers for a given table.
Definition: triggers.cc:139
enum_fields
Definition: triggers.h:56
@ FIELD_ACTION_STATEMENT
Definition: triggers.h:64
@ FIELD_TABLE_ID
Definition: triggers.h:61
@ FIELD_CLIENT_COLLATION_ID
Definition: triggers.h:70
@ FIELD_DEFINER
Definition: triggers.h:69
@ FIELD_EVENT_TYPE
Definition: triggers.h:60
@ NUMBER_OF_FIELDS
Definition: triggers.h:74
@ FIELD_CONNECTION_COLLATION_ID
Definition: triggers.h:71
@ FIELD_ACTION_STATEMENT_UTF8
Definition: triggers.h:65
@ FIELD_SCHEMA_COLLATION_ID
Definition: triggers.h:72
@ FIELD_LAST_ALTERED
Definition: triggers.h:67
@ FIELD_OPTIONS
Definition: triggers.h:73
@ FIELD_NAME
Definition: triggers.h:59
@ FIELD_SCHEMA_ID
Definition: triggers.h:58
@ FIELD_CREATED
Definition: triggers.h:66
@ FIELD_SQL_MODE
Definition: triggers.h:68
@ FIELD_ID
Definition: triggers.h:57
@ FIELD_ACTION_TIMING
Definition: triggers.h:62
@ FIELD_ACTION_ORDER
Definition: triggers.h:63
enum_indexes
Definition: triggers.h:77
@ INDEX_UK_SCHEMA_ID_NAME
Definition: triggers.h:79
@ INDEX_K_DEFINER
Definition: triggers.h:84
@ INDEX_K_CLIENT_COLLATION_ID
Definition: triggers.h:81
@ INDEX_UK_TABLE_ID_EVENT_TYPE_ACTION_TIMING_ACTION_ORDER
Definition: triggers.h:80
@ INDEX_K_CONNECTION_COLLATION_ID
Definition: triggers.h:82
@ INDEX_K_SCHEMA_COLLATION_ID
Definition: triggers.h:83
@ INDEX_PK_ID
Definition: triggers.h:78
Triggers()
Definition: triggers.cc:51
static const Triggers & instance()
Definition: triggers.h:49
static Object_id read_table_id(const Raw_record &r)
Get the table id from the record.
Definition: triggers.cc:155
static const CHARSET_INFO * name_collation()
Definition: triggers.cc:45
static bool get_trigger_table_id(THD *thd, Object_id schema_id, const String_type &trigger_name, Object_id *oid)
Find table's Object_id for a given trigger name.
Definition: triggers.cc:161
static Object_key * create_key_by_definer(const String_type &definer)
Create a key to find all triggers for a given definer.
Definition: triggers.cc:190
const dd::system_views::Columns_extensions * s_instance
Definition: columns_extensions.cc:41
The version of the current data dictionary table definitions.
Definition: dictionary_client.h:43
unsigned long long Object_id
Definition: object_id.h:31
Char_string_template< String_type_allocator > String_type
Definition: string_type.h:51
const mysql_service_registry_t * r
Definition: pfs_example_plugin_employee.cc:86
Definition: m_ctype.h:385
unsigned int uint
Definition: uca9-dump.cc:75