Skip to content

Commit 5d26ea8

Browse files
committed
fix: CI
1 parent 352611a commit 5d26ea8

9 files changed

Lines changed: 13 additions & 6 deletions

File tree

src/iceberg/expression/literal.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ class ICEBERG_EXPORT Literal : public util::Formattable {
8181

8282
/// \brief Create a decimal literal.
8383
/// \param value The unscaled 128-bit integer value.
84-
static Literal Decimal(int128_t value, int32_t precision, int32_t scale);
84+
static Literal Decimal(int128_t value, int32_t precision,
85+
int32_t scale); // NOLINT(changes-meaning)
8586

8687
/// \brief Create a literal representing a null value.
8788
static Literal Null(std::shared_ptr<PrimitiveType> type) {

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)