| 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 | #ifndef PFS_COLUMN_VALUES_H |
| 17 | #define PFS_COLUMN_VALUES_H |
| 18 | |
| 19 | #include "m_string.h" /* LEX_STRING */ |
| 20 | |
| 21 | /** |
| 22 | @file storage/perfschema/pfs_column_values.h |
| 23 | Literal values for columns used in the |
| 24 | performance schema tables (declarations). |
| 25 | */ |
| 26 | |
| 27 | /** String, "PERFORMANCE_SCHEMA". */ |
| 28 | extern LEX_CSTRING PERFORMANCE_SCHEMA_str; |
| 29 | |
| 30 | /** String prefix for all mutex instruments. */ |
| 31 | extern LEX_CSTRING mutex_instrument_prefix; |
| 32 | /** String prefix for all rwlock instruments. */ |
| 33 | extern LEX_CSTRING rwlock_instrument_prefix; |
| 34 | /** String prefix for all cond instruments. */ |
| 35 | extern LEX_CSTRING cond_instrument_prefix; |
| 36 | /** String prefix for all thread instruments. */ |
| 37 | extern LEX_CSTRING thread_instrument_prefix; |
| 38 | /** String prefix for all file instruments. */ |
| 39 | extern LEX_CSTRING file_instrument_prefix; |
| 40 | /** String prefix for all stage instruments. */ |
| 41 | extern LEX_CSTRING stage_instrument_prefix; |
| 42 | /** String prefix for all statement instruments. */ |
| 43 | extern LEX_CSTRING statement_instrument_prefix; |
| 44 | extern LEX_CSTRING socket_instrument_prefix; |
| 45 | |
| 46 | #endif |
| 47 | |
| 48 | |