Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,14 @@ The file src/iceberg/util/visit_type.h contains code adapted from

https://github.com/apache/arrow/blob/main/cpp/src/arrow/visit_type_inline.h

The file src/iceberg/util/decimal.h contains code adapted from

https://github.com/apache/arrow/blob/main/cpp/src/arrow/util/decimal.h

The file src/iceberg/util/decimal.cc contains code adapted from

https://github.com/apache/arrow/blob/main/cpp/src/arrow/util/decimal.cc

Copyright: 2016-2025 The Apache Software Foundation.
Home page: https://arrow.apache.org/
License: https://www.apache.org/licenses/LICENSE-2.0
1 change: 1 addition & 0 deletions src/iceberg/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ set(ICEBERG_SOURCES
manifest_reader_internal.cc
manifest_writer.cc
arrow_c_data_guard_internal.cc
util/decimal.cc
util/murmurhash3_internal.cc
util/timepoint.cc
util/gzip_internal.cc)
Expand Down
1 change: 0 additions & 1 deletion src/iceberg/inheritable_metadata.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

#include "iceberg/inheritable_metadata.h"

#include <cassert>
#include <utility>

#include <iceberg/result.h>
Expand Down
2 changes: 2 additions & 0 deletions src/iceberg/result.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ enum class ErrorKind {
kAlreadyExists,
kCommitStateUnknown,
kDecompressError,
kInvalid, // For general invalid errors
kInvalidArgument,
kInvalidArrowData,
kInvalidExpression,
Expand Down Expand Up @@ -79,6 +80,7 @@ using Status = Result<void>;
DEFINE_ERROR_FUNCTION(AlreadyExists)
DEFINE_ERROR_FUNCTION(CommitStateUnknown)
DEFINE_ERROR_FUNCTION(DecompressError)
DEFINE_ERROR_FUNCTION(Invalid)
DEFINE_ERROR_FUNCTION(InvalidArgument)
DEFINE_ERROR_FUNCTION(InvalidArrowData)
DEFINE_ERROR_FUNCTION(InvalidExpression)
Expand Down
Loading
Loading