Skip to content

Commit a943182

Browse files
committed
maybe fix fast build
1 parent 7bea2f1 commit a943182

File tree

1 file changed

+17
-8
lines changed

1 file changed

+17
-8
lines changed

src/Storages/ObjectStorage/DataLakes/Iceberg/ManifestFile.h

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
#pragma once
22

33
#include "config.h"
4+
#include <Core/Range.h>
5+
#include <Core/Types.h>
6+
7+
#include <optional>
8+
9+
namespace DB::Iceberg
10+
{
11+
12+
struct ColumnInfo
13+
{
14+
std::optional<Int64> rows_count;
15+
std::optional<Int64> bytes_size;
16+
std::optional<Int64> nulls_count;
17+
std::optional<DB::Range> hyperrectangle;
18+
};
19+
20+
}
421

522
#if USE_AVRO
623

@@ -38,14 +55,6 @@ enum class ManifestFileContentType
3855

3956
String FileContentTypeToString(FileContentType type);
4057

41-
struct ColumnInfo
42-
{
43-
std::optional<Int64> rows_count;
44-
std::optional<Int64> bytes_size;
45-
std::optional<Int64> nulls_count;
46-
std::optional<DB::Range> hyperrectangle;
47-
};
48-
4958
struct PartitionSpecsEntry
5059
{
5160
Int32 source_id;

0 commit comments

Comments
 (0)