1 | /* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */ |
2 | // vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4: |
3 | /* -*- mode: C; c-basic-offset: 4 -*- */ |
4 | #ident "$Id$" |
5 | /*====== |
6 | This file is part of TokuDB |
7 | |
8 | |
9 | Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. |
10 | |
11 | TokuDBis is free software: you can redistribute it and/or modify |
12 | it under the terms of the GNU General Public License, version 2, |
13 | as published by the Free Software Foundation. |
14 | |
15 | TokuDB is distributed in the hope that it will be useful, |
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
18 | GNU General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU General Public License |
21 | along with TokuDB. If not, see <http://www.gnu.org/licenses/>. |
22 | |
23 | ======= */ |
24 | |
25 | #ident "Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved." |
26 | |
27 | #ifndef _TOKUDB_INFORMATION_SCHEMA_H |
28 | #define _TOKUDB_INFORMATION_SCHEMA_H |
29 | |
30 | #include "hatoku_defines.h" |
31 | |
32 | namespace tokudb { |
33 | namespace information_schema { |
34 | |
35 | #ifdef MARIA_PLUGIN_INTERFACE_VERSION |
36 | #define st_mysql_plugin st_maria_plugin |
37 | #endif |
38 | |
39 | extern st_mysql_plugin trx; |
40 | extern st_mysql_plugin lock_waits; |
41 | extern st_mysql_plugin locks; |
42 | extern st_mysql_plugin file_map; |
43 | extern st_mysql_plugin fractal_tree_info; |
44 | extern st_mysql_plugin fractal_tree_block_map; |
45 | extern st_mysql_plugin background_job_status; |
46 | |
47 | } // namespace information_schema |
48 | } // namespace tokudb |
49 | |
50 | #endif // _TOKUDB_INFORMATION_SCHEMA_H |
51 | |