MySQL 9.0.0
Source Code Documentation
terminology_use_previous_enum.h
Go to the documentation of this file.
1/* Copyright (c) 2021, 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 TERMINOLOGY_USE_PREVIOUS_ENUM_H_
25#define TERMINOLOGY_USE_PREVIOUS_ENUM_H_
26
27/**
28 In respect to the organization of modules, this really belongs in
29 terminology_use_previous.h. However, that would create a
30 cyclic dependency between header files:
31
32 - enum_compatibility_version is needed in pfs_instr_class.h
33
34 - PFS_class_type is defined in pfs_instr_class.h and needed in
35 instrumentation_class_compatibility.h
36
37 So we keep enum_compatibility_version in its own header, included
38 from both the other headers, to avoid the cyclicity.
39*/
40
42
43/**
44 Enumeration holding the possible values for
45 @@terminology_use_previous. Each element corresponds to a
46 server release where some instrumentation name was changed.
47*/
49 /// Use new names; do not provide backward compatibility
51 /// Use names that were in use up to 8.0.25, inclusive.
53 /// Use names that were in use before 8.2.0.
55};
56
57} // namespace terminology_use_previous
58
59#endif // TERMINOLOGY_USE_PREVIOUS_ENUM_H_
In respect to the organization of modules, this really belongs in terminology_use_previous....
Definition: terminology_use_previous.cc:200
enum_compatibility_version
Enumeration holding the possible values for @terminology_use_previous.
Definition: terminology_use_previous_enum.h:48
@ NONE
Use new names; do not provide backward compatibility.
Definition: terminology_use_previous_enum.h:50
@ BEFORE_8_2_0
Use names that were in use before 8.2.0.
Definition: terminology_use_previous_enum.h:54
@ BEFORE_8_0_26
Use names that were in use up to 8.0.25, inclusive.
Definition: terminology_use_previous_enum.h:52