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 /**
24   @file storage/perfschema/pfs_column_values.cc
25   Literal values for columns used in the performance
26   schema tables (implementation).
27 */
28 
29 #include "my_global.h"
30 #include "pfs_column_values.h"
31 
32 LEX_STRING PERFORMANCE_SCHEMA_str=
33 { C_STRING_WITH_LEN("performance_schema") };
34 
35 LEX_STRING mutex_instrument_prefix=
36 { C_STRING_WITH_LEN("wait/synch/mutex/") };
37 
38 LEX_STRING rwlock_instrument_prefix=
39 { C_STRING_WITH_LEN("wait/synch/rwlock/") };
40 
41 LEX_STRING sxlock_instrument_prefix=
42 { C_STRING_WITH_LEN("wait/synch/sxlock/") };
43 
44 LEX_STRING cond_instrument_prefix=
45 { C_STRING_WITH_LEN("wait/synch/cond/") };
46 
47 LEX_STRING thread_instrument_prefix=
48 { C_STRING_WITH_LEN("thread/") };
49 
50 LEX_STRING file_instrument_prefix=
51 { C_STRING_WITH_LEN("wait/io/file/") };
52 
53 LEX_STRING stage_instrument_prefix=
54 { C_STRING_WITH_LEN("stage/") };
55 
56 LEX_STRING statement_instrument_prefix=
57 { C_STRING_WITH_LEN("statement/") };
58 
59 LEX_STRING transaction_instrument_prefix=
60 { C_STRING_WITH_LEN("transaction") };
61 
62 LEX_STRING socket_instrument_prefix=
63 { C_STRING_WITH_LEN("wait/io/socket/") };
64 
65 LEX_STRING memory_instrument_prefix=
66 { C_STRING_WITH_LEN("memory/") };
67 
68