MySQL 8.3.0
Source Code Documentation
parameters.h
Go to the documentation of this file.
1/* Copyright (c) 2017, 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_SYSTEM_VIEWS__PARAMETERS_INCLUDED
24#define DD_SYSTEM_VIEWS__PARAMETERS_INCLUDED
25
28#include "sql/dd/string_type.h"
29
30namespace dd {
31namespace system_views {
32
33/*
34 The class representing INFORMATION_SCHEMA.PARAMETERS system view definition.
35*/
36class Parameters : public System_view_impl<System_view_select_definition_impl> {
37 public:
55 };
56
57 Parameters();
58
59 static const Parameters &instance();
60
61 static const String_type &view_name() {
62 static String_type s_view_name("PARAMETERS");
63 return s_view_name;
64 }
65
66 const String_type &name() const override { return Parameters::view_name(); }
67};
68
69} // namespace system_views
70} // namespace dd
71
72#endif // DD_SYSTEM_VIEWS__PARAMETERS_INCLUDED
Definition: parameters.h:36
static const String_type & view_name()
Definition: parameters.h:61
static const Parameters & instance()
Definition: parameters.cc:28
Parameters()
Definition: parameters.cc:33
const String_type & name() const override
Definition: parameters.h:66
enum_fields
Definition: parameters.h:38
@ FIELD_DTD_IDENTIFIER
Definition: parameters.h:53
@ FIELD_CHARACTER_SET_NAME
Definition: parameters.h:51
@ FIELD_SPECIFIC_CATALOG
Definition: parameters.h:39
@ FIELD_CHARACTER_OCTET_LENGTH
Definition: parameters.h:47
@ FIELD_CHARACTER_MAXIMUM_LENGTH
Definition: parameters.h:46
@ FIELD_NUMERIC_PRECISION
Definition: parameters.h:48
@ FIELD_DATA_TYPE
Definition: parameters.h:45
@ FIELD_PARAMETER_MODE
Definition: parameters.h:43
@ FIELD_ROUTINE_TYPE
Definition: parameters.h:54
@ FIELD_SPECIFIC_NAME
Definition: parameters.h:41
@ FIELD_DATETIME_PRECISION
Definition: parameters.h:50
@ FIELD_SPECIFIC_SCHEMA
Definition: parameters.h:40
@ FIELD_ORDINAL_POSITION
Definition: parameters.h:42
@ FIELD_NUMERIC_SCALE
Definition: parameters.h:49
@ FIELD_COLLATION_NAME
Definition: parameters.h:52
@ FIELD_PARAMETER_NAME
Definition: parameters.h:44
Definition: system_view_impl.h:32
const dd::String_type s_view_name
Definition: columns_extensions.cc:40
The version of the current data dictionary table definitions.
Definition: dictionary_client.h:42
Char_string_template< String_type_allocator > String_type
Definition: string_type.h:50