1 /* Copyright (c) 2006, 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
21    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
22 
23 #ifndef SQL_TEST_INCLUDED
24 #define SQL_TEST_INCLUDED
25 
26 #include "my_global.h"
27 #include "thr_lock.h"           // TL_WRITE_ONLY
28 #include "mem_root_array.h"     // Mem_root_array
29 #include "mysqld.h"             // enum_query_type
30 
31 class Item;
32 class JOIN;
33 class Key_use;
34 struct TABLE_LIST;
35 typedef class st_select_lex SELECT_LEX;
36 typedef Mem_root_array<Key_use, true> Key_use_array;
37 
38 extern const char *lock_descriptions[TL_WRITE_ONLY + 1];
39 
40 #ifndef NDEBUG
41 void print_where(Item *cond,const char *info, enum_query_type query_type);
42 void TEST_join(JOIN *join);
43 void print_plan(JOIN* join,uint idx, double record_count, double read_time,
44                 double current_read_time, const char *info);
45 void dump_TABLE_LIST_graph(SELECT_LEX *select_lex, TABLE_LIST* tl);
46 #endif
47 void mysql_print_status();
48 class Opt_trace_context;
49 void print_keyuse_array(Opt_trace_context *trace,
50                         const Key_use_array *keyuse_array);
51 #endif /* SQL_TEST_INCLUDED */
52