1 | /* Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved. |
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 as published by |
5 | the Free Software Foundation; version 2 of the License. |
6 | |
7 | This program is distributed in the hope that it will be useful, |
8 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
9 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
10 | GNU General Public License for more details. |
11 | |
12 | You should have received a copy of the GNU General Public License |
13 | along with this program; if not, write to the Free Software Foundation, |
14 | 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA */ |
15 | |
16 | /** |
17 | @file storage/perfschema/pfs_column_values.cc |
18 | Literal values for columns used in the performance |
19 | schema tables (implementation). |
20 | */ |
21 | |
22 | #include "my_global.h" |
23 | #include "pfs_column_values.h" |
24 | |
25 | LEX_CSTRING PERFORMANCE_SCHEMA_str= |
26 | { STRING_WITH_LEN("performance_schema" ) }; |
27 | |
28 | LEX_CSTRING mutex_instrument_prefix= |
29 | { STRING_WITH_LEN("wait/synch/mutex/" ) }; |
30 | |
31 | LEX_CSTRING rwlock_instrument_prefix= |
32 | { STRING_WITH_LEN("wait/synch/rwlock/" ) }; |
33 | |
34 | LEX_CSTRING cond_instrument_prefix= |
35 | { STRING_WITH_LEN("wait/synch/cond/" ) }; |
36 | |
37 | LEX_CSTRING thread_instrument_prefix= |
38 | { STRING_WITH_LEN("thread/" ) }; |
39 | |
40 | LEX_CSTRING file_instrument_prefix= |
41 | { STRING_WITH_LEN("wait/io/file/" ) }; |
42 | |
43 | LEX_CSTRING stage_instrument_prefix= |
44 | { STRING_WITH_LEN("stage/" ) }; |
45 | |
46 | LEX_CSTRING statement_instrument_prefix= |
47 | { STRING_WITH_LEN("statement/" ) }; |
48 | |
49 | LEX_CSTRING socket_instrument_prefix= |
50 | { STRING_WITH_LEN("wait/io/socket/" ) }; |
51 | |