MySQL 9.0.0
Source Code Documentation
indexes.h
Go to the documentation of this file.
1/* Copyright (c) 2014, 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__INDEXES_INCLUDED
25#define DD_TABLES__INDEXES_INCLUDED
26
27#include "sql/dd/impl/types/object_table_impl.h" // dd::Object_table_impl
28#include "sql/dd/object_id.h" // dd::Object_id
29#include "sql/dd/string_type.h"
30
31struct CHARSET_INFO;
32
33namespace dd {
34class Object_key;
35
36namespace tables {
37
38///////////////////////////////////////////////////////////////////////////
39
40class Indexes : public Object_table_impl {
41 public:
42 static const Indexes &instance();
43
44 static const CHARSET_INFO *name_collation();
45
64 NUMBER_OF_FIELDS // Always keep this entry at the end of the enum
65 };
66
68 INDEX_PK_ID = static_cast<uint>(Common_index::PK_ID),
71 };
72
74
75 Indexes();
76
78};
79
80///////////////////////////////////////////////////////////////////////////
81
82} // namespace tables
83} // namespace dd
84
85#endif // DD_TABLES__INDEXES_INCLUDED
Definition: object_key.h:38
Definition: object_table_impl.h:36
Definition: indexes.h:40
enum_foreign_keys
Definition: indexes.h:73
@ FK_TABLE_ID
Definition: indexes.h:73
@ FK_TABLESPACE_ID
Definition: indexes.h:73
Indexes()
Definition: indexes.cc:50
enum_fields
Definition: indexes.h:46
@ FIELD_COMMENT
Definition: indexes.h:57
@ FIELD_TABLESPACE_ID
Definition: indexes.h:60
@ FIELD_TABLE_ID
Definition: indexes.h:48
@ FIELD_HIDDEN
Definition: indexes.h:55
@ FIELD_IS_VISIBLE
Definition: indexes.h:53
@ FIELD_SE_PRIVATE_DATA
Definition: indexes.h:59
@ NUMBER_OF_FIELDS
Definition: indexes.h:64
@ FIELD_SECONDARY_ENGINE_ATTRIBUTE
Definition: indexes.h:63
@ FIELD_TYPE
Definition: indexes.h:50
@ FIELD_ID
Definition: indexes.h:47
@ FIELD_ORDINAL_POSITION
Definition: indexes.h:56
@ FIELD_OPTIONS
Definition: indexes.h:58
@ FIELD_ALGORITHM
Definition: indexes.h:51
@ FIELD_IS_GENERATED
Definition: indexes.h:54
@ FIELD_IS_ALGORITHM_EXPLICIT
Definition: indexes.h:52
@ FIELD_ENGINE_ATTRIBUTE
Definition: indexes.h:62
@ FIELD_ENGINE
Definition: indexes.h:61
@ FIELD_NAME
Definition: indexes.h:49
static const CHARSET_INFO * name_collation()
Definition: indexes.cc:44
static Object_key * create_key_by_table_id(Object_id table_id)
Definition: indexes.cc:118
static const Indexes & instance()
Definition: indexes.cc:37
enum_indexes
Definition: indexes.h:67
@ INDEX_PK_ID
Definition: indexes.h:68
@ INDEX_UK_TABLE_ID_NAME
Definition: indexes.h:69
@ INDEX_K_TABLESPACE_ID
Definition: indexes.h:70
The version of the current data dictionary table definitions.
Definition: dictionary_client.h:43
unsigned long long Object_id
Definition: object_id.h:31
Definition: m_ctype.h:421