1 | /* Copyright (C) 2009, 2017, MariaDB Corporation. |
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 or later 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 |
14 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */ |
15 | |
16 | /* Defining what to log to slow log */ |
17 | |
18 | #ifndef LOG_SLOW_INCLUDED |
19 | #define LOG_SLOW_INCLUDED |
20 | |
21 | #define LOG_SLOW_VERBOSITY_INIT 0 |
22 | #define LOG_SLOW_VERBOSITY_INNODB (1U << 0) |
23 | #define LOG_SLOW_VERBOSITY_QUERY_PLAN (1U << 1) |
24 | #define LOG_SLOW_VERBOSITY_EXPLAIN (1U << 2) |
25 | |
26 | #define QPLAN_INIT QPLAN_QC_NO |
27 | |
28 | #define QPLAN_ADMIN (1U << 0) |
29 | #define QPLAN_FILESORT (1U << 1) |
30 | #define QPLAN_FILESORT_DISK (1U << 2) |
31 | #define QPLAN_FILESORT_PRIORITY_QUEUE (1U << 3) |
32 | #define QPLAN_FULL_JOIN (1U << 4) |
33 | #define QPLAN_FULL_SCAN (1U << 5) |
34 | #define QPLAN_NOT_USING_INDEX (1U << 6) |
35 | #define QPLAN_QC (1U << 7) |
36 | #define QPLAN_QC_NO (1U << 8) |
37 | #define QPLAN_TMP_TABLE (1U << 9) |
38 | #define QPLAN_TMP_DISK (1U << 10) |
39 | |
40 | /* ... */ |
41 | #define QPLAN_MAX (1UL << 31) /* reserved as placeholder */ |
42 | |
43 | /* Bits for log_slow_disabled_statements */ |
44 | #define LOG_SLOW_DISABLE_ADMIN (1 << 0) |
45 | #define LOG_SLOW_DISABLE_CALL (1 << 1) |
46 | #define LOG_SLOW_DISABLE_SLAVE (1 << 2) |
47 | #define LOG_SLOW_DISABLE_SP (1 << 3) |
48 | |
49 | /* Bits for log_disabled_statements */ |
50 | #define LOG_DISABLE_SLAVE (1 << 0) |
51 | #define LOG_DISABLE_SP (1 << 1) |
52 | |
53 | #endif /* LOG_SLOW_INCLUDED */ |
54 | |