MySQL
26.7.0
Source Code Documentation
clone_descriptor_format.h
Go to the documentation of this file.
1
/*****************************************************************************
2
3
Copyright (c) 2026, Oracle and/or its affiliates.
4
5
This program is free software; you can redistribute it and/or modify it under
6
the terms of the GNU General Public License, version 2.0, as published by the
7
Free Software Foundation.
8
9
This program is designed to work with certain software (including
10
but not limited to OpenSSL) that is licensed under separate terms,
11
as designated in a particular file or component or in included license
12
documentation. The authors of MySQL hereby grant you an additional
13
permission to link the program and your derivative works with the
14
separately licensed software that they have either included with
15
the program or referenced in the documentation.
16
17
This program is distributed in the hope that it will be useful, but WITHOUT
18
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
19
FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0,
20
for more details.
21
22
You should have received a copy of the GNU General Public License along with
23
this program; if not, write to the Free Software Foundation, Inc.,
24
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
26
*****************************************************************************/
27
28
/** @file include/clone_descriptor_format.h
29
Shared serialized clone descriptor layout constants.
30
31
*******************************************************/
32
33
#ifndef CLONE_DESCRIPTOR_FORMAT_INCLUDED
34
#define CLONE_DESCRIPTOR_FORMAT_INCLUDED
35
36
#include <cstdint>
37
38
namespace
clone_desc_format
{
39
40
/** Highest serialized descriptor version supported by this format. */
41
inline
constexpr
std::uint32_t
CLONE_DESC_MAX_VERSION
= 100;
42
43
/** Descriptor version field offset in the serialized header. */
44
inline
constexpr
std::uint32_t
CLONE_DESC_VER_OFFSET
= 0;
45
/** Descriptor length field offset in the serialized header. */
46
inline
constexpr
std::uint32_t
CLONE_DESC_LEN_OFFSET
=
47
CLONE_DESC_VER_OFFSET
+ 4;
48
/** Descriptor type field offset in the serialized header. */
49
inline
constexpr
std::uint32_t
CLONE_DESC_TYPE_OFFSET
=
50
CLONE_DESC_LEN_OFFSET
+ 4;
51
/** Serialized descriptor header length in bytes. */
52
inline
constexpr
std::uint32_t
CLONE_DESC_HEADER_LEN
=
53
CLONE_DESC_TYPE_OFFSET
+ 4;
54
55
/** Serialized type value for file metadata descriptors. */
56
inline
constexpr
std::uint32_t
CLONE_DESC_FILE_METADATA_TYPE
= 4;
57
58
/** Task metadata task index field offset. */
59
inline
constexpr
std::uint32_t
CLONE_TASK_INDEX_OFFSET
=
CLONE_DESC_HEADER_LEN
;
60
/** Task metadata chunk number field offset. */
61
inline
constexpr
std::uint32_t
CLONE_TASK_CHUNK_OFFSET
=
62
CLONE_TASK_INDEX_OFFSET
+ 4;
63
/** Task metadata block number field offset. */
64
inline
constexpr
std::uint32_t
CLONE_TASK_BLOCK_OFFSET
=
65
CLONE_TASK_CHUNK_OFFSET
+ 4;
66
/** Serialized task metadata descriptor length in bytes. */
67
inline
constexpr
std::uint32_t
CLONE_TASK_META_LEN
=
68
CLONE_TASK_BLOCK_OFFSET
+ 4;
69
70
/** Locator descriptor clone id field offset. */
71
inline
constexpr
std::uint32_t
CLONE_LOC_CID_OFFSET
=
CLONE_DESC_HEADER_LEN
;
72
/** Locator descriptor snapshot id field offset. */
73
inline
constexpr
std::uint32_t
CLONE_LOC_SID_OFFSET
=
CLONE_LOC_CID_OFFSET
+ 8;
74
/** Locator descriptor clone array index field offset. */
75
inline
constexpr
std::uint32_t
CLONE_LOC_IDX_OFFSET
=
CLONE_LOC_SID_OFFSET
+ 8;
76
/** Locator descriptor snapshot state field offset. */
77
inline
constexpr
std::uint32_t
CLONE_LOC_STATE_OFFSET
=
78
CLONE_LOC_IDX_OFFSET
+ 4;
79
/** Locator descriptor snapshot sub-state field offset. */
80
inline
constexpr
std::uint32_t
CLONE_LOC_META_OFFSET
=
81
CLONE_LOC_STATE_OFFSET
+ 1;
82
/** Serialized locator descriptor base length in bytes. */
83
inline
constexpr
std::uint32_t
CLONE_DESC_LOC_BASE_LEN
=
84
CLONE_LOC_META_OFFSET
+ 1;
85
86
/** File metadata state field offset. */
87
inline
constexpr
std::uint32_t
CLONE_FILE_STATE_OFFSET
=
CLONE_DESC_HEADER_LEN
;
88
/** File metadata file size field offset. */
89
inline
constexpr
std::uint32_t
CLONE_FILE_SIZE_OFFSET
=
90
CLONE_FILE_STATE_OFFSET
+ 4;
91
/** File metadata allocated size field offset. */
92
inline
constexpr
std::uint32_t
CLONE_FILE_ALLOC_SIZE_OFFSET
=
93
CLONE_FILE_SIZE_OFFSET
+ 8;
94
/** File metadata FSP flags field offset. */
95
inline
constexpr
std::uint32_t
CLONE_FILE_FSP_OFFSET
=
96
CLONE_FILE_ALLOC_SIZE_OFFSET
+ 8;
97
/** File metadata filesystem block size field offset. */
98
inline
constexpr
std::uint32_t
CLONE_FILE_FSBLK_OFFSET
=
99
CLONE_FILE_FSP_OFFSET
+ 4;
100
/** File metadata flags field offset. */
101
inline
constexpr
std::uint32_t
CLONE_FILE_FLAGS_OFFSET
=
102
CLONE_FILE_FSBLK_OFFSET
+ 4;
103
/** File metadata zlib compression flag bit. */
104
inline
constexpr
std::uint32_t
CLONE_DESC_FILE_FLAG_ZLIB
= 1;
105
/** File metadata LZ4 compression flag bit. */
106
inline
constexpr
std::uint32_t
CLONE_DESC_FILE_FLAG_LZ4
= 2;
107
/** File metadata encryption flag bit. */
108
inline
constexpr
std::uint32_t
CLONE_DESC_FILE_FLAG_AES
= 3;
109
/** File metadata renamed flag bit. */
110
inline
constexpr
std::uint32_t
CLONE_DESC_FILE_FLAG_RENAMED
= 4;
111
/** File metadata deleted flag bit. */
112
inline
constexpr
std::uint32_t
CLONE_DESC_FILE_FLAG_DELETED
= 5;
113
/** File metadata key-presence flag bit. */
114
inline
constexpr
std::uint32_t
CLONE_DESC_FILE_HAS_KEY
= 6;
115
/** File metadata tablespace id field offset. */
116
inline
constexpr
std::uint32_t
CLONE_FILE_SPACE_ID_OFFSET
=
117
CLONE_FILE_FLAGS_OFFSET
+ 2;
118
/** File metadata file index field offset. */
119
inline
constexpr
std::uint32_t
CLONE_FILE_IDX_OFFSET
=
120
CLONE_FILE_SPACE_ID_OFFSET
+ 4;
121
/** File metadata begin chunk field offset. */
122
inline
constexpr
std::uint32_t
CLONE_FILE_BCHUNK_OFFSET
=
123
CLONE_FILE_IDX_OFFSET
+ 4;
124
/** File metadata end chunk field offset. */
125
inline
constexpr
std::uint32_t
CLONE_FILE_ECHUNK_OFFSET
=
126
CLONE_FILE_BCHUNK_OFFSET
+ 4;
127
/** File metadata file name length field offset. */
128
inline
constexpr
std::uint32_t
CLONE_FILE_FNAMEL_OFFSET
=
129
CLONE_FILE_ECHUNK_OFFSET
+ 4;
130
/** File metadata file name field offset. */
131
inline
constexpr
std::uint32_t
CLONE_FILE_FNAME_OFFSET
=
132
CLONE_FILE_FNAMEL_OFFSET
+ 4;
133
/** Serialized file metadata descriptor base length in bytes. */
134
inline
constexpr
std::uint32_t
CLONE_FILE_BASE_LEN
=
CLONE_FILE_FNAME_OFFSET
;
135
136
/** State descriptor clone state field offset. */
137
inline
constexpr
std::uint32_t
CLONE_DESC_STATE_OFFSET
=
CLONE_DESC_HEADER_LEN
;
138
/** State descriptor task index field offset. */
139
inline
constexpr
std::uint32_t
CLONE_DESC_TASK_OFFSET
=
140
CLONE_DESC_STATE_OFFSET
+ 4;
141
/** State descriptor chunk count field offset. */
142
inline
constexpr
std::uint32_t
CLONE_DESC_STATE_NUM_CHUNKS
=
143
CLONE_DESC_TASK_OFFSET
+ 4;
144
/** State descriptor file count field offset. */
145
inline
constexpr
std::uint32_t
CLONE_DESC_STATE_NUM_FILES
=
146
CLONE_DESC_STATE_NUM_CHUNKS
+ 4;
147
/** State descriptor estimated byte count field offset. */
148
inline
constexpr
std::uint32_t
CLONE_DESC_STATE_EST_BYTES
=
149
CLONE_DESC_STATE_NUM_FILES
+ 4;
150
/** State descriptor estimated disk usage field offset. */
151
inline
constexpr
std::uint32_t
CLONE_DESC_STATE_EST_DISK
=
152
CLONE_DESC_STATE_EST_BYTES
+ 8;
153
/** State descriptor flags field offset. */
154
inline
constexpr
std::uint32_t
CLONE_DESC_STATE_FLAGS
=
155
CLONE_DESC_STATE_EST_DISK
+ 8;
156
/** Serialized state descriptor length in bytes. */
157
inline
constexpr
std::uint32_t
CLONE_DESC_STATE_LEN
=
158
CLONE_DESC_STATE_FLAGS
+ 2;
159
/** State descriptor start flag bit. */
160
inline
constexpr
std::uint32_t
CLONE_DESC_STATE_FLAG_START
= 1;
161
/** State descriptor acknowledgement flag bit. */
162
inline
constexpr
std::uint32_t
CLONE_DESC_STATE_FLAG_ACK
= 2;
163
164
/** Data descriptor state field offset. */
165
inline
constexpr
std::uint32_t
CLONE_DATA_STATE_OFFSET
=
CLONE_DESC_HEADER_LEN
;
166
/** Data descriptor task index field offset. */
167
inline
constexpr
std::uint32_t
CLONE_DATA_TASK_INDEX_OFFSET
=
168
CLONE_DATA_STATE_OFFSET
+ 4;
169
/** Data descriptor chunk number field offset. */
170
inline
constexpr
std::uint32_t
CLONE_DATA_TASK_CHUNK_OFFSET
=
171
CLONE_DATA_TASK_INDEX_OFFSET
+ 4;
172
/** Data descriptor block number field offset. */
173
inline
constexpr
std::uint32_t
CLONE_DATA_TASK_BLOCK_OFFSET
=
174
CLONE_DATA_TASK_CHUNK_OFFSET
+ 4;
175
/** Data descriptor file index field offset. */
176
inline
constexpr
std::uint32_t
CLONE_DATA_FILE_IDX_OFFSET
=
177
CLONE_DATA_TASK_BLOCK_OFFSET
+ 4;
178
/** Data descriptor data length field offset. */
179
inline
constexpr
std::uint32_t
CLONE_DATA_LEN_OFFSET
=
180
CLONE_DATA_FILE_IDX_OFFSET
+ 4;
181
/** Data descriptor file offset field offset. */
182
inline
constexpr
std::uint32_t
CLONE_DATA_FOFF_OFFSET
=
183
CLONE_DATA_LEN_OFFSET
+ 4;
184
/** Data descriptor file size field offset. */
185
inline
constexpr
std::uint32_t
CLONE_DATA_FILE_SIZE_OFFSET
=
186
CLONE_DATA_FOFF_OFFSET
+ 8;
187
/** Serialized data descriptor length in bytes. */
188
inline
constexpr
std::uint32_t
CLONE_DESC_DATA_LEN
=
189
CLONE_DATA_FILE_SIZE_OFFSET
+ 8;
190
191
}
// namespace clone_desc_format
192
193
#endif
// CLONE_DESCRIPTOR_FORMAT_INCLUDED
clone_desc_format
Definition:
clone_descriptor_format.h:38
clone_desc_format::CLONE_FILE_FNAME_OFFSET
constexpr std::uint32_t CLONE_FILE_FNAME_OFFSET
File metadata file name field offset.
Definition:
clone_descriptor_format.h:131
clone_desc_format::CLONE_DESC_FILE_FLAG_ZLIB
constexpr std::uint32_t CLONE_DESC_FILE_FLAG_ZLIB
File metadata zlib compression flag bit.
Definition:
clone_descriptor_format.h:104
clone_desc_format::CLONE_DESC_STATE_FLAG_ACK
constexpr std::uint32_t CLONE_DESC_STATE_FLAG_ACK
State descriptor acknowledgement flag bit.
Definition:
clone_descriptor_format.h:162
clone_desc_format::CLONE_DATA_FILE_SIZE_OFFSET
constexpr std::uint32_t CLONE_DATA_FILE_SIZE_OFFSET
Data descriptor file size field offset.
Definition:
clone_descriptor_format.h:185
clone_desc_format::CLONE_TASK_META_LEN
constexpr std::uint32_t CLONE_TASK_META_LEN
Serialized task metadata descriptor length in bytes.
Definition:
clone_descriptor_format.h:67
clone_desc_format::CLONE_DATA_STATE_OFFSET
constexpr std::uint32_t CLONE_DATA_STATE_OFFSET
Data descriptor state field offset.
Definition:
clone_descriptor_format.h:165
clone_desc_format::CLONE_FILE_BASE_LEN
constexpr std::uint32_t CLONE_FILE_BASE_LEN
Serialized file metadata descriptor base length in bytes.
Definition:
clone_descriptor_format.h:134
clone_desc_format::CLONE_LOC_STATE_OFFSET
constexpr std::uint32_t CLONE_LOC_STATE_OFFSET
Locator descriptor snapshot state field offset.
Definition:
clone_descriptor_format.h:77
clone_desc_format::CLONE_LOC_SID_OFFSET
constexpr std::uint32_t CLONE_LOC_SID_OFFSET
Locator descriptor snapshot id field offset.
Definition:
clone_descriptor_format.h:73
clone_desc_format::CLONE_FILE_FLAGS_OFFSET
constexpr std::uint32_t CLONE_FILE_FLAGS_OFFSET
File metadata flags field offset.
Definition:
clone_descriptor_format.h:101
clone_desc_format::CLONE_LOC_IDX_OFFSET
constexpr std::uint32_t CLONE_LOC_IDX_OFFSET
Locator descriptor clone array index field offset.
Definition:
clone_descriptor_format.h:75
clone_desc_format::CLONE_DATA_FILE_IDX_OFFSET
constexpr std::uint32_t CLONE_DATA_FILE_IDX_OFFSET
Data descriptor file index field offset.
Definition:
clone_descriptor_format.h:176
clone_desc_format::CLONE_DESC_STATE_NUM_CHUNKS
constexpr std::uint32_t CLONE_DESC_STATE_NUM_CHUNKS
State descriptor chunk count field offset.
Definition:
clone_descriptor_format.h:142
clone_desc_format::CLONE_DESC_HEADER_LEN
constexpr std::uint32_t CLONE_DESC_HEADER_LEN
Serialized descriptor header length in bytes.
Definition:
clone_descriptor_format.h:52
clone_desc_format::CLONE_DESC_FILE_HAS_KEY
constexpr std::uint32_t CLONE_DESC_FILE_HAS_KEY
File metadata key-presence flag bit.
Definition:
clone_descriptor_format.h:114
clone_desc_format::CLONE_TASK_BLOCK_OFFSET
constexpr std::uint32_t CLONE_TASK_BLOCK_OFFSET
Task metadata block number field offset.
Definition:
clone_descriptor_format.h:64
clone_desc_format::CLONE_DESC_DATA_LEN
constexpr std::uint32_t CLONE_DESC_DATA_LEN
Serialized data descriptor length in bytes.
Definition:
clone_descriptor_format.h:188
clone_desc_format::CLONE_DESC_LEN_OFFSET
constexpr std::uint32_t CLONE_DESC_LEN_OFFSET
Descriptor length field offset in the serialized header.
Definition:
clone_descriptor_format.h:46
clone_desc_format::CLONE_DESC_STATE_EST_DISK
constexpr std::uint32_t CLONE_DESC_STATE_EST_DISK
State descriptor estimated disk usage field offset.
Definition:
clone_descriptor_format.h:151
clone_desc_format::CLONE_FILE_IDX_OFFSET
constexpr std::uint32_t CLONE_FILE_IDX_OFFSET
File metadata file index field offset.
Definition:
clone_descriptor_format.h:119
clone_desc_format::CLONE_DESC_LOC_BASE_LEN
constexpr std::uint32_t CLONE_DESC_LOC_BASE_LEN
Serialized locator descriptor base length in bytes.
Definition:
clone_descriptor_format.h:83
clone_desc_format::CLONE_LOC_META_OFFSET
constexpr std::uint32_t CLONE_LOC_META_OFFSET
Locator descriptor snapshot sub-state field offset.
Definition:
clone_descriptor_format.h:80
clone_desc_format::CLONE_TASK_CHUNK_OFFSET
constexpr std::uint32_t CLONE_TASK_CHUNK_OFFSET
Task metadata chunk number field offset.
Definition:
clone_descriptor_format.h:61
clone_desc_format::CLONE_DESC_FILE_FLAG_LZ4
constexpr std::uint32_t CLONE_DESC_FILE_FLAG_LZ4
File metadata LZ4 compression flag bit.
Definition:
clone_descriptor_format.h:106
clone_desc_format::CLONE_TASK_INDEX_OFFSET
constexpr std::uint32_t CLONE_TASK_INDEX_OFFSET
Task metadata task index field offset.
Definition:
clone_descriptor_format.h:59
clone_desc_format::CLONE_LOC_CID_OFFSET
constexpr std::uint32_t CLONE_LOC_CID_OFFSET
Locator descriptor clone id field offset.
Definition:
clone_descriptor_format.h:71
clone_desc_format::CLONE_FILE_ALLOC_SIZE_OFFSET
constexpr std::uint32_t CLONE_FILE_ALLOC_SIZE_OFFSET
File metadata allocated size field offset.
Definition:
clone_descriptor_format.h:92
clone_desc_format::CLONE_FILE_ECHUNK_OFFSET
constexpr std::uint32_t CLONE_FILE_ECHUNK_OFFSET
File metadata end chunk field offset.
Definition:
clone_descriptor_format.h:125
clone_desc_format::CLONE_DESC_FILE_FLAG_DELETED
constexpr std::uint32_t CLONE_DESC_FILE_FLAG_DELETED
File metadata deleted flag bit.
Definition:
clone_descriptor_format.h:112
clone_desc_format::CLONE_DESC_STATE_FLAG_START
constexpr std::uint32_t CLONE_DESC_STATE_FLAG_START
State descriptor start flag bit.
Definition:
clone_descriptor_format.h:160
clone_desc_format::CLONE_FILE_FSP_OFFSET
constexpr std::uint32_t CLONE_FILE_FSP_OFFSET
File metadata FSP flags field offset.
Definition:
clone_descriptor_format.h:95
clone_desc_format::CLONE_DATA_FOFF_OFFSET
constexpr std::uint32_t CLONE_DATA_FOFF_OFFSET
Data descriptor file offset field offset.
Definition:
clone_descriptor_format.h:182
clone_desc_format::CLONE_DESC_STATE_EST_BYTES
constexpr std::uint32_t CLONE_DESC_STATE_EST_BYTES
State descriptor estimated byte count field offset.
Definition:
clone_descriptor_format.h:148
clone_desc_format::CLONE_DESC_STATE_FLAGS
constexpr std::uint32_t CLONE_DESC_STATE_FLAGS
State descriptor flags field offset.
Definition:
clone_descriptor_format.h:154
clone_desc_format::CLONE_DESC_TASK_OFFSET
constexpr std::uint32_t CLONE_DESC_TASK_OFFSET
State descriptor task index field offset.
Definition:
clone_descriptor_format.h:139
clone_desc_format::CLONE_DESC_STATE_NUM_FILES
constexpr std::uint32_t CLONE_DESC_STATE_NUM_FILES
State descriptor file count field offset.
Definition:
clone_descriptor_format.h:145
clone_desc_format::CLONE_FILE_SPACE_ID_OFFSET
constexpr std::uint32_t CLONE_FILE_SPACE_ID_OFFSET
File metadata tablespace id field offset.
Definition:
clone_descriptor_format.h:116
clone_desc_format::CLONE_DATA_TASK_CHUNK_OFFSET
constexpr std::uint32_t CLONE_DATA_TASK_CHUNK_OFFSET
Data descriptor chunk number field offset.
Definition:
clone_descriptor_format.h:170
clone_desc_format::CLONE_FILE_FNAMEL_OFFSET
constexpr std::uint32_t CLONE_FILE_FNAMEL_OFFSET
File metadata file name length field offset.
Definition:
clone_descriptor_format.h:128
clone_desc_format::CLONE_DATA_TASK_BLOCK_OFFSET
constexpr std::uint32_t CLONE_DATA_TASK_BLOCK_OFFSET
Data descriptor block number field offset.
Definition:
clone_descriptor_format.h:173
clone_desc_format::CLONE_DESC_FILE_FLAG_RENAMED
constexpr std::uint32_t CLONE_DESC_FILE_FLAG_RENAMED
File metadata renamed flag bit.
Definition:
clone_descriptor_format.h:110
clone_desc_format::CLONE_DESC_TYPE_OFFSET
constexpr std::uint32_t CLONE_DESC_TYPE_OFFSET
Descriptor type field offset in the serialized header.
Definition:
clone_descriptor_format.h:49
clone_desc_format::CLONE_DESC_STATE_OFFSET
constexpr std::uint32_t CLONE_DESC_STATE_OFFSET
State descriptor clone state field offset.
Definition:
clone_descriptor_format.h:137
clone_desc_format::CLONE_DATA_LEN_OFFSET
constexpr std::uint32_t CLONE_DATA_LEN_OFFSET
Data descriptor data length field offset.
Definition:
clone_descriptor_format.h:179
clone_desc_format::CLONE_DESC_VER_OFFSET
constexpr std::uint32_t CLONE_DESC_VER_OFFSET
Descriptor version field offset in the serialized header.
Definition:
clone_descriptor_format.h:44
clone_desc_format::CLONE_DESC_FILE_FLAG_AES
constexpr std::uint32_t CLONE_DESC_FILE_FLAG_AES
File metadata encryption flag bit.
Definition:
clone_descriptor_format.h:108
clone_desc_format::CLONE_DATA_TASK_INDEX_OFFSET
constexpr std::uint32_t CLONE_DATA_TASK_INDEX_OFFSET
Data descriptor task index field offset.
Definition:
clone_descriptor_format.h:167
clone_desc_format::CLONE_FILE_BCHUNK_OFFSET
constexpr std::uint32_t CLONE_FILE_BCHUNK_OFFSET
File metadata begin chunk field offset.
Definition:
clone_descriptor_format.h:122
clone_desc_format::CLONE_FILE_SIZE_OFFSET
constexpr std::uint32_t CLONE_FILE_SIZE_OFFSET
File metadata file size field offset.
Definition:
clone_descriptor_format.h:89
clone_desc_format::CLONE_DESC_FILE_METADATA_TYPE
constexpr std::uint32_t CLONE_DESC_FILE_METADATA_TYPE
Serialized type value for file metadata descriptors.
Definition:
clone_descriptor_format.h:56
clone_desc_format::CLONE_DESC_MAX_VERSION
constexpr std::uint32_t CLONE_DESC_MAX_VERSION
Highest serialized descriptor version supported by this format.
Definition:
clone_descriptor_format.h:41
clone_desc_format::CLONE_FILE_STATE_OFFSET
constexpr std::uint32_t CLONE_FILE_STATE_OFFSET
File metadata state field offset.
Definition:
clone_descriptor_format.h:87
clone_desc_format::CLONE_FILE_FSBLK_OFFSET
constexpr std::uint32_t CLONE_FILE_FSBLK_OFFSET
File metadata filesystem block size field offset.
Definition:
clone_descriptor_format.h:98
clone_desc_format::CLONE_DESC_STATE_LEN
constexpr std::uint32_t CLONE_DESC_STATE_LEN
Serialized state descriptor length in bytes.
Definition:
clone_descriptor_format.h:157
storage
innobase
include
clone_descriptor_format.h
Generated by
1.9.2