MySQL 9.0.0
Source Code Documentation
pfs_column_values.h
Go to the documentation of this file.
1/* Copyright (c) 2008, 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 PFS_COLUMN_VALUES_H
25#define PFS_COLUMN_VALUES_H
26
27#include "lex_string.h"
28
29/**
30 @file storage/perfschema/pfs_column_values.h
31 Literal values for columns used in the
32 performance schema tables (declarations).
33*/
34
35/** String, "PERFORMANCE_SCHEMA". */
37
38/** String prefix for all mutex instruments. */
40/** String prefix for all prlock instruments. */
42/** String prefix for all rwlock instruments. */
44/** String prefix for all sxlock instruments. */
46/** String prefix for all cond instruments. */
48/** String prefix for all file instruments. */
50/** Name of the global table I/O class. */
52/** Name of the global table lock class. */
54/** String prefix for all socket instruments. */
56/** Name of the global idle class. */
58/** Name of the global metadata lock class. */
60/** String prefix for all thread instruments. */
62/** String prefix for all stage instruments. */
64/** String prefix for all statement instruments. */
66/** String prefix for all transaction instruments. */
68/** String prefix for built-in memory instruments. */
70/** String prefix for all memory instruments. */
72/** String prefix for all meter instruments. */
74/** String prefix for all metric instruments. */
76/** Name of the global error class. */
78
79#endif
LEX_CSTRING stage_instrument_prefix
String prefix for all stage instruments.
Definition: pfs_column_values.cc:64
LEX_CSTRING sxlock_instrument_prefix
String prefix for all sxlock instruments.
Definition: pfs_column_values.cc:43
LEX_CSTRING PERFORMANCE_SCHEMA_str
String, "PERFORMANCE_SCHEMA".
Definition: pfs_column_values.cc:35
LEX_CSTRING idle_class_name
Name of the global idle class.
Definition: pfs_column_values.cc:57
LEX_CSTRING socket_instrument_prefix
String prefix for all socket instruments.
Definition: pfs_column_values.cc:55
LEX_CSTRING thread_instrument_prefix
String prefix for all thread instruments.
Definition: pfs_column_values.cc:62
LEX_CSTRING metric_instrument_prefix
String prefix for all metric instruments.
Definition: pfs_column_values.cc:79
LEX_CSTRING error_class_name
Name of the global error class.
Definition: pfs_column_values.cc:75
LEX_CSTRING builtin_memory_instrument_prefix
String prefix for built-in memory instruments.
Definition: pfs_column_values.cc:70
LEX_CSTRING memory_instrument_prefix
String prefix for all memory instruments.
Definition: pfs_column_values.cc:73
LEX_CSTRING statement_instrument_prefix
String prefix for all statement instruments.
Definition: pfs_column_values.cc:66
LEX_CSTRING mutex_instrument_prefix
String prefix for all mutex instruments.
Definition: pfs_column_values.cc:37
LEX_CSTRING file_instrument_prefix
String prefix for all file instruments.
Definition: pfs_column_values.cc:47
LEX_CSTRING transaction_instrument_prefix
String prefix for all transaction instruments.
Definition: pfs_column_values.cc:68
LEX_CSTRING rwlock_instrument_prefix
String prefix for all rwlock instruments.
Definition: pfs_column_values.cc:41
LEX_CSTRING prlock_instrument_prefix
String prefix for all prlock instruments.
Definition: pfs_column_values.cc:39
LEX_CSTRING cond_instrument_prefix
String prefix for all cond instruments.
Definition: pfs_column_values.cc:45
LEX_CSTRING table_io_class_name
Name of the global table I/O class.
Definition: pfs_column_values.cc:49
LEX_CSTRING table_lock_class_name
Name of the global table lock class.
Definition: pfs_column_values.cc:52
LEX_CSTRING meter_instrument_prefix
String prefix for all meter instruments.
Definition: pfs_column_values.cc:77
LEX_CSTRING metadata_lock_class_name
Name of the global metadata lock class.
Definition: pfs_column_values.cc:59
Definition: mysql_lex_string.h:40