@@ -178,112 +178,112 @@ struct ICEBERG_EXPORT DataFile {
178178 // / present
179179 std::optional<int64_t > content_size_in_bytes;
180180
181- inline static constexpr int32_t kContentFieldId = 134 ;
181+ static constexpr int32_t kContentFieldId = 134 ;
182182 inline static const SchemaField kContent = SchemaField::MakeOptional(
183183 kContentFieldId , " content" , int32(),
184184 " Contents of the file: 0=data, 1=position deletes, 2=equality deletes" );
185185
186- inline static constexpr int32_t kFilePathFieldId = 100 ;
186+ static constexpr int32_t kFilePathFieldId = 100 ;
187187 inline static const SchemaField kFilePath = SchemaField::MakeRequired(
188188 kFilePathFieldId , " file_path" , string(), " Location URI with FS scheme" );
189189
190- inline static constexpr int32_t kFileFormatFieldId = 101 ;
190+ static constexpr int32_t kFileFormatFieldId = 101 ;
191191 inline static const SchemaField kFileFormat =
192192 SchemaField::MakeRequired (kFileFormatFieldId , " file_format" , string(),
193193 "File format name: avro, orc, or parquet");
194194
195- inline static constexpr int32_t kPartitionFieldId = 102 ;
195+ static constexpr int32_t kPartitionFieldId = 102 ;
196196 inline static const std::string kPartitionField = " partition" ;
197197 inline static const std::string kPartitionDoc =
198198 " Partition data tuple, schema based on the partition spec" ;
199199
200- inline static constexpr int32_t kRecordCountFieldId = 103 ;
200+ static constexpr int32_t kRecordCountFieldId = 103 ;
201201 inline static const SchemaField kRecordCount = SchemaField::MakeRequired(
202202 kRecordCountFieldId , " record_count" , int64(), " Number of records in the file" );
203203
204- inline static constexpr int32_t kFileSizeFieldId = 104 ;
204+ static constexpr int32_t kFileSizeFieldId = 104 ;
205205 inline static const SchemaField kFileSize = SchemaField::MakeRequired(
206206 kFileSizeFieldId , " file_size_in_bytes" , int64(), " Total file size in bytes" );
207207
208- inline static constexpr int32_t kColumnSizesFieldId = 108 ;
208+ static constexpr int32_t kColumnSizesFieldId = 108 ;
209209 inline static const SchemaField kColumnSizes = SchemaField::MakeOptional(
210210 kColumnSizesFieldId , " column_sizes" ,
211211 map (SchemaField::MakeRequired(117 , std::string(MapType::kKeyName ), int32()),
212212 SchemaField::MakeRequired(118 , std::string(MapType::kValueName ), int64())),
213213 "Map of column id to total size on disk");
214214
215- inline static constexpr int32_t kValueCountsFieldId = 109 ;
215+ static constexpr int32_t kValueCountsFieldId = 109 ;
216216 inline static const SchemaField kValueCounts = SchemaField::MakeOptional(
217217 kValueCountsFieldId , " value_counts" ,
218218 map (SchemaField::MakeRequired(119 , std::string(MapType::kKeyName ), int32()),
219219 SchemaField::MakeRequired(120 , std::string(MapType::kValueName ), int64())),
220220 "Map of column id to total count, including null and NaN");
221221
222- inline static constexpr int32_t kNullValueCountsFieldId = 110 ;
222+ static constexpr int32_t kNullValueCountsFieldId = 110 ;
223223 inline static const SchemaField kNullValueCounts = SchemaField::MakeOptional(
224224 kNullValueCountsFieldId , " null_value_counts" ,
225225 map (SchemaField::MakeRequired(121 , std::string(MapType::kKeyName ), int32()),
226226 SchemaField::MakeRequired(122 , std::string(MapType::kValueName ), int64())),
227227 "Map of column id to null value count");
228228
229- inline static constexpr int32_t kNanValueCountsFieldId = 137 ;
229+ static constexpr int32_t kNanValueCountsFieldId = 137 ;
230230 inline static const SchemaField kNanValueCounts = SchemaField::MakeOptional(
231231 kNanValueCountsFieldId , " nan_value_counts" ,
232232 map (SchemaField::MakeRequired(138 , std::string(MapType::kKeyName ), int32()),
233233 SchemaField::MakeRequired(139 , std::string(MapType::kValueName ), int64())),
234234 "Map of column id to number of NaN values in the column");
235235
236- inline static constexpr int32_t kLowerBoundsFieldId = 125 ;
236+ static constexpr int32_t kLowerBoundsFieldId = 125 ;
237237 inline static const SchemaField kLowerBounds = SchemaField::MakeOptional(
238238 kLowerBoundsFieldId , " lower_bounds" ,
239239 map (SchemaField::MakeRequired(126 , std::string(MapType::kKeyName ), int32()),
240240 SchemaField::MakeRequired(127 , std::string(MapType::kValueName ), binary())),
241241 "Map of column id to lower bound");
242242
243- inline static constexpr int32_t kUpperBoundsFieldId = 128 ;
243+ static constexpr int32_t kUpperBoundsFieldId = 128 ;
244244 inline static const SchemaField kUpperBounds = SchemaField::MakeOptional(
245245 kUpperBoundsFieldId , " upper_bounds" ,
246246 map (SchemaField::MakeRequired(129 , std::string(MapType::kKeyName ), int32()),
247247 SchemaField::MakeRequired(130 , std::string(MapType::kValueName ), binary())),
248248 "Map of column id to upper bound");
249249
250- inline static constexpr int32_t kKeyMetadataFieldId = 131 ;
250+ static constexpr int32_t kKeyMetadataFieldId = 131 ;
251251 inline static const SchemaField kKeyMetadata = SchemaField::MakeOptional(
252252 kKeyMetadataFieldId , " key_metadata" , binary(), " Encryption key metadata blob" );
253253
254- inline static constexpr int32_t kSplitOffsetsFieldId = 132 ;
254+ static constexpr int32_t kSplitOffsetsFieldId = 132 ;
255255 inline static const SchemaField kSplitOffsets = SchemaField::MakeOptional(
256256 kSplitOffsetsFieldId , " split_offsets" ,
257257 list (SchemaField::MakeRequired(133 , std::string(ListType::kElementName ), int64())),
258258 "Splittable offsets");
259259
260- inline static constexpr int32_t kEqualityIdsFieldId = 135 ;
260+ static constexpr int32_t kEqualityIdsFieldId = 135 ;
261261 inline static const SchemaField kEqualityIds = SchemaField::MakeOptional(
262262 kEqualityIdsFieldId , " equality_ids" ,
263263 list (SchemaField::MakeRequired(136 , std::string(ListType::kElementName ), int32())),
264264 "Equality comparison field IDs");
265265
266- inline static constexpr int32_t kSortOrderIdFieldId = 140 ;
266+ static constexpr int32_t kSortOrderIdFieldId = 140 ;
267267 inline static const SchemaField kSortOrderId = SchemaField::MakeOptional(
268268 kSortOrderIdFieldId , " sort_order_id" , int32(), " Sort order ID" );
269269
270- inline static constexpr int32_t kFirstRowIdFieldId = 142 ;
270+ static constexpr int32_t kFirstRowIdFieldId = 142 ;
271271 inline static const SchemaField kFirstRowId =
272272 SchemaField::MakeOptional (kFirstRowIdFieldId , " first_row_id" , int64(),
273273 "Starting row ID to assign to new rows");
274274
275- inline static constexpr int32_t kReferencedDataFileFieldId = 143 ;
275+ static constexpr int32_t kReferencedDataFileFieldId = 143 ;
276276 inline static const SchemaField kReferencedDataFile = SchemaField::MakeOptional(
277277 kReferencedDataFileFieldId , " referenced_data_file" , string(),
278278 " Fully qualified location (URI with FS scheme) of a data file that all deletes "
279279 " reference" );
280280
281- inline static constexpr int32_t kContentOffsetFieldId = 144 ;
281+ static constexpr int32_t kContentOffsetFieldId = 144 ;
282282 inline static const SchemaField kContentOffset =
283283 SchemaField::MakeOptional (kContentOffsetFieldId , " content_offset" , int64(),
284284 "The offset in the file where the content starts");
285285
286- inline static constexpr int32_t kContentSizeFieldId = 145 ;
286+ static constexpr int32_t kContentSizeFieldId = 145 ;
287287 inline static const SchemaField kContentSize =
288288 SchemaField::MakeOptional (kContentSizeFieldId , " content_size_in_bytes" , int64(),
289289 "The length of referenced content stored in the file");
@@ -318,22 +318,22 @@ struct ICEBERG_EXPORT ManifestEntry {
318318 // / File path, partition tuple, metrics, ...
319319 std::shared_ptr<DataFile> data_file;
320320
321- inline static constexpr int32_t kStatusFieldId = 0 ;
321+ static constexpr int32_t kStatusFieldId = 0 ;
322322 inline static const SchemaField kStatus =
323323 SchemaField::MakeRequired (kStatusFieldId , " status" , int32());
324324
325- inline static constexpr int32_t kSnapshotIdFieldId = 1 ;
325+ static constexpr int32_t kSnapshotIdFieldId = 1 ;
326326 inline static const SchemaField kSnapshotId =
327327 SchemaField::MakeOptional (kSnapshotIdFieldId , " snapshot_id" , int64());
328328
329329 inline static const int32_t kDataFileFieldId = 2 ;
330330 inline static const std::string kDataFileField = " data_file" ;
331331
332- inline static constexpr int32_t kSequenceNumberFieldId = 3 ;
332+ static constexpr int32_t kSequenceNumberFieldId = 3 ;
333333 inline static const SchemaField kSequenceNumber =
334334 SchemaField::MakeOptional (kSequenceNumberFieldId , " sequence_number" , int64());
335335
336- inline static constexpr int32_t kFileSequenceNumberFieldId = 4 ;
336+ static constexpr int32_t kFileSequenceNumberFieldId = 4 ;
337337 inline static const SchemaField kFileSequenceNumber = SchemaField::MakeOptional(
338338 kFileSequenceNumberFieldId , " file_sequence_number" , int64());
339339
0 commit comments