1 /* Copyright (c) 2008, 2021, 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 Foundation,
21   51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA */
22 
23 #ifndef PFS_COLUMN_VALUES_H
24 #define PFS_COLUMN_VALUES_H
25 
26 #include "m_string.h"                           /* LEX_STRING */
27 
28 /**
29   @file storage/perfschema/pfs_column_values.h
30   Literal values for columns used in the
31   performance schema tables (declarations).
32 */
33 
34 /** String, "PERFORMANCE_SCHEMA". */
35 extern LEX_STRING PERFORMANCE_SCHEMA_str;
36 
37 /** String prefix for all mutex instruments. */
38 extern LEX_STRING mutex_instrument_prefix;
39 /** String prefix for all rwlock instruments. */
40 extern LEX_STRING rwlock_instrument_prefix;
41 /** String prefix for all sxlock instruments. */
42 extern LEX_STRING sxlock_instrument_prefix;
43 /** String prefix for all cond instruments. */
44 extern LEX_STRING cond_instrument_prefix;
45 /** String prefix for all thread instruments. */
46 extern LEX_STRING thread_instrument_prefix;
47 /** String prefix for all file instruments. */
48 extern LEX_STRING file_instrument_prefix;
49 /** String prefix for all stage instruments. */
50 extern LEX_STRING stage_instrument_prefix;
51 /** String prefix for all statement instruments. */
52 extern LEX_STRING statement_instrument_prefix;
53 /** String prefix for all transaction instruments. */
54 extern LEX_STRING transaction_instrument_prefix;
55 /** String prefix for all socket instruments. */
56 extern LEX_STRING socket_instrument_prefix;
57 /** String prefix for all memory instruments. */
58 extern LEX_STRING memory_instrument_prefix;
59 
60 #endif
61 
62