MySQL 8.4.0
Source Code Documentation
table_access_service_impl.h
Go to the documentation of this file.
1/* Copyright (c) 2020, 2024, Oracle and/or its affiliates.
2
3This program is free software; you can redistribute it and/or modify
4it under the terms of the GNU General Public License, version 2.0,
5as published by the Free Software Foundation.
6
7This program is designed to work with certain software (including
8but not limited to OpenSSL) that is licensed under separate terms,
9as designated in a particular file or component or in included license
10documentation. The authors of MySQL hereby grant you an additional
11permission to link the program and your derivative works with the
12separately licensed software that they have either included with
13the program or referenced in the documentation.
14
15This program is distributed in the hope that it will be useful,
16but WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18GNU General Public License, version 2.0, for more details.
19
20You should have received a copy of the GNU General Public License
21along with this program; if not, write to the Free Software
22Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef TABLE_ACCESS_SERVICE_IMPL_INCLUDED
25#define TABLE_ACCESS_SERVICE_IMPL_INCLUDED
26
31
32extern SERVICE_TYPE(table_access_factory_v1)
33 SERVICE_IMPLEMENTATION(mysql_server, table_access_factory_v1);
34
35extern SERVICE_TYPE(table_access_v1)
36 SERVICE_IMPLEMENTATION(mysql_server, table_access_v1);
37
38extern SERVICE_TYPE(table_access_index_v1)
39 SERVICE_IMPLEMENTATION(mysql_server, table_access_index_v1);
40
41extern SERVICE_TYPE(table_access_scan_v1)
42 SERVICE_IMPLEMENTATION(mysql_server, table_access_scan_v1);
43
44extern SERVICE_TYPE(table_access_update_v1)
45 SERVICE_IMPLEMENTATION(mysql_server, table_access_update_v1);
46
47extern SERVICE_TYPE(field_access_nullability_v1)
48 SERVICE_IMPLEMENTATION(mysql_server, field_access_nullability_v1);
49
50extern SERVICE_TYPE(field_integer_access_v1)
51 SERVICE_IMPLEMENTATION(mysql_server, field_integer_access_v1);
52
53extern SERVICE_TYPE(field_varchar_access_v1)
54 SERVICE_IMPLEMENTATION(mysql_server, field_varchar_access_v1);
55
56extern SERVICE_TYPE(field_any_access_v1)
57 SERVICE_IMPLEMENTATION(mysql_server, field_any_access_v1);
58
59#endif /* TABLE_ACCESS_SERVICE_IMPL_INCLUDED */
Specifies macros to define Components.
#define SERVICE_TYPE(name)
Generates the standard Service type name.
Definition: service.h:76
Specifies macros to define Service Implementations.
const mysql_service_table_access_factory_v1_t SERVICE_IMPLEMENTATION(mysql_server, table_access_factory_v1)