MySQL 8.4.0
Source Code Documentation
system_view.h
Go to the documentation of this file.
1/* Copyright (c) 2017, 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__SYSTEM_VIEW_INCLUDED
25#define DD__SYSTEM_VIEW_INCLUDED
26
27#include "sql/dd/string_type.h" // dd::String_type
28
29namespace dd {
30namespace system_views {
31
32class System_view_definition;
33
34/**
35 This class represents base class for all INFORMATION_SCHEMA system views
36 defined in sql/dd/impl/system_views/ headers.
37*/
38
40 public:
41 virtual ~System_view() = default;
42
43 /*
44 Get name of system view.
45
46 @return String containing name of view.
47 */
48 virtual const String_type &name() const = 0;
49
50 /*
51 Get SQL string containing CREATE VIEW definition to create the system view.
52
53 @return SQL String.
54 */
55 virtual const System_view_definition *view_definition() const = 0;
56
57 /*
58 Check if the system view is to be hidden from users.
59
60 @return true If system view is hidden.
61 false If system view is not hidden.
62
63 */
64 virtual bool hidden() const = 0;
65};
66
67} // namespace system_views
68} // namespace dd
69
70#endif // DD__SYSTEM_VIEW_INCLUDED
Definition: system_view_definition.h:37
This class represents base class for all INFORMATION_SCHEMA system views defined in sql/dd/impl/syste...
Definition: system_view.h:39
virtual ~System_view()=default
virtual bool hidden() const =0
virtual const System_view_definition * view_definition() const =0
virtual const String_type & name() const =0
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