Skip to content

Commit 609c539

Browse files
committed
fix: CI
1 parent 352611a commit 609c539

9 files changed

Lines changed: 14 additions & 8 deletions

File tree

src/iceberg/expression/literal.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ class ICEBERG_EXPORT Literal : public util::Formattable {
5858
int64_t, // for long, timestamp, timestamp_tz, time
5959
float, // for float
6060
double, // for double
61-
Decimal, // for decimal
62-
std::string, // for string
63-
Uuid, // for uuid
61+
::iceberg::Decimal, // for decimal
62+
std::string, // for string
63+
Uuid, // for uuid
6464
std::vector<uint8_t>, // for binary, fixed
6565
BelowMin, AboveMax>;
6666

src/iceberg/test/bucket_util_test.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323

2424
#include <gtest/gtest.h>
2525

26+
#include "iceberg/util/decimal.h"
27+
#include "iceberg/util/uuid.h"
28+
2629
namespace iceberg {
2730

2831
// The following tests are from

src/iceberg/test/truncate_util_test.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121

2222
#include <gtest/gtest.h>
2323

24+
#include "iceberg/expression/literal.h"
25+
2426
namespace iceberg {
2527

2628
// The following tests are from

src/iceberg/type_fwd.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ class NameMapping;
115115
enum class SnapshotRefType;
116116
enum class TransformType;
117117

118+
class Decimal;
118119
class Expression;
119120
class Literal;
120121

src/iceberg/util/bucket_util.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
#include <utility>
2323

24+
#include "iceberg/expression/literal.h"
2425
#include "iceberg/util/endian.h"
2526
#include "iceberg/util/macros.h"
2627
#include "iceberg/util/murmurhash3_internal.h"

src/iceberg/util/bucket_util.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@
2222
#include <cstdint>
2323
#include <span>
2424

25-
#include "iceberg/expression/literal.h"
2625
#include "iceberg/iceberg_export.h"
27-
#include "iceberg/result.h"
26+
#include "iceberg/type_fwd.h"
2827

2928
namespace iceberg {
3029

src/iceberg/util/temporal_util.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <chrono>
2323
#include <utility>
2424

25-
#include <__chrono/time_point.h>
25+
#include "iceberg/expression/literal.h"
2626

2727
namespace iceberg {
2828

src/iceberg/util/temporal_util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020
#pragma once
2121

22-
#include "iceberg/expression/literal.h"
2322
#include "iceberg/iceberg_export.h"
2423
#include "iceberg/result.h"
24+
#include "iceberg/type_fwd.h"
2525

2626
namespace iceberg {
2727

src/iceberg/util/truncate_util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
#include <string>
2424
#include <utility>
2525

26-
#include "iceberg/expression/literal.h"
2726
#include "iceberg/iceberg_export.h"
2827
#include "iceberg/result.h"
28+
#include "iceberg/type_fwd.h"
2929

3030
namespace iceberg {
3131

0 commit comments

Comments
 (0)