MySQL 9.4.0
Source Code Documentation
json_duality_view_columns.h
Go to the documentation of this file.
1/* Copyright (c) 2025, 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#pragma once
25
28#include "sql/dd/string_type.h"
29
30namespace dd {
31namespace system_views {
32
33/*
34 The class representing the INFORMATION_SCHEMA.JSON_DUALITY_VIEW_COLUMNS system
35 view definition.
36*/
38 : public System_view_impl<System_view_select_definition_impl> {
39 public:
55 };
56
58
59 static const Json_duality_view_columns &instance();
60
61 static const String_type &view_name() {
62 static String_type s_view_name("JSON_DUALITY_VIEW_COLUMNS");
63 return s_view_name;
64 }
65
66 const String_type &name() const override {
68 }
69};
70
71} // namespace system_views
72} // namespace dd
Definition: json_duality_view_columns.h:38
enum_fields
Definition: json_duality_view_columns.h:40
@ FIELD_REFERENCED_TABLE_SCHEMA
Definition: json_duality_view_columns.h:45
@ FIELD_TABLE_CATALOG
Definition: json_duality_view_columns.h:41
@ FIELD_REFERENCED_TABLE_ID
Definition: json_duality_view_columns.h:48
@ FIELD_REFERENCED_COLUMN_NAME
Definition: json_duality_view_columns.h:49
@ FIELD_JSON_KEY_NAME
Definition: json_duality_view_columns.h:50
@ FIELD_ALLOW_UPDATE
Definition: json_duality_view_columns.h:52
@ FIELD_REFERENCED_TABLE_NAME
Definition: json_duality_view_columns.h:46
@ FIELD_REFERENCED_TABLE_CATALOG
Definition: json_duality_view_columns.h:44
@ FIELD_TABLE_NAME
Definition: json_duality_view_columns.h:43
@ FIELD_READ_ONLY
Definition: json_duality_view_columns.h:54
@ FIELD_TABLE_SCHEMA
Definition: json_duality_view_columns.h:42
@ FIELD_IS_ROOT_TABLE
Definition: json_duality_view_columns.h:47
@ FIELD_ALLOW_INSERT
Definition: json_duality_view_columns.h:51
@ FIELD_ALLOW_DELETE
Definition: json_duality_view_columns.h:53
static const String_type & view_name()
Definition: json_duality_view_columns.h:61
static const Json_duality_view_columns & instance()
Definition: json_duality_view_columns.cc:33
Json_duality_view_columns()
Definition: json_duality_view_columns.cc:39
const String_type & name() const override
Definition: json_duality_view_columns.h:66
Definition: system_view_impl.h:33
const dd::String_type s_view_name
Definition: columns_extensions.cc:41
The version of the current data dictionary table definitions.
Definition: dictionary_client.h:43
Char_string_template< String_type_allocator > String_type
Definition: string_type.h:51