MySQL 9.0.0
Source Code Documentation
pfs_plugin_table.h
Go to the documentation of this file.
1/* Copyright (c) 2017, 2024, 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 designed to work 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 either included with
13 the program or referenced in the documentation.
14
15 This program 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, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef PFS_PLUGIN_TABLE_H
25#define PFS_PLUGIN_TABLE_H
26
28#include <mysql/plugin.h>
29
30/**
31 @file storage/perfschema/pfs_plugin_table.h
32 The performance schema implementation of plugin table.
33*/
34
35extern SERVICE_TYPE(pfs_plugin_table_v1)
36 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_table_v1);
37
38extern SERVICE_TYPE(pfs_plugin_column_tiny_v1)
39 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_tiny_v1);
40
41extern SERVICE_TYPE(pfs_plugin_column_small_v1)
42 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_small_v1);
43
44extern SERVICE_TYPE(pfs_plugin_column_medium_v1)
45 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_medium_v1);
46
47extern SERVICE_TYPE(pfs_plugin_column_integer_v1)
48 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_integer_v1);
49
50extern SERVICE_TYPE(pfs_plugin_column_bigint_v1)
51 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_bigint_v1);
52
53extern SERVICE_TYPE(pfs_plugin_column_decimal_v1)
54 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_decimal_v1);
55
56extern SERVICE_TYPE(pfs_plugin_column_float_v1)
57 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_float_v1);
58
59extern SERVICE_TYPE(pfs_plugin_column_double_v1)
60 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_double_v1);
61
62extern SERVICE_TYPE(pfs_plugin_column_string_v2)
63 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_string_v2);
64
65extern SERVICE_TYPE(pfs_plugin_column_blob_v1)
66 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_blob_v1);
67
68extern SERVICE_TYPE(pfs_plugin_column_enum_v1)
69 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_enum_v1);
70
71extern SERVICE_TYPE(pfs_plugin_column_date_v1)
72 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_date_v1);
73
74extern SERVICE_TYPE(pfs_plugin_column_time_v1)
75 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_time_v1);
76
77extern SERVICE_TYPE(pfs_plugin_column_datetime_v1)
78 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_datetime_v1);
79
80extern SERVICE_TYPE(pfs_plugin_column_timestamp_v1)
81 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_timestamp_v1);
82
83extern SERVICE_TYPE(pfs_plugin_column_timestamp_v2)
84 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_timestamp_v2);
85
86extern SERVICE_TYPE(pfs_plugin_column_year_v1)
87 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_year_v1);
88
89extern SERVICE_TYPE(pfs_plugin_column_text_v1)
90 SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_text_v1);
91
94#endif /* PFS_PLUGIN_TABLE_H */
const mysql_service_pfs_plugin_table_v1_t SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_table_v1)
void init_pfs_plugin_table()
Definition: pfs_plugin_table.cc:1269
void cleanup_pfs_plugin_table()
Definition: pfs_plugin_table.cc:1286
#define SERVICE_TYPE(name)
Generates the standard Service type name.
Definition: service.h:76