Skip to content
Open
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
1 change: 1 addition & 0 deletions src/iceberg/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ set(ICEBERG_SOURCES
update/expire_snapshots.cc
update/fast_append.cc
update/merge_append.cc
update/replace_partitions.cc
update/merging_snapshot_update.cc
update/overwrite_files.cc
update/pending_update.cc
Expand Down
1 change: 1 addition & 0 deletions src/iceberg/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ iceberg_sources = files(
'update/merging_snapshot_update.cc',
'update/overwrite_files.cc',
'update/pending_update.cc',
'update/replace_partitions.cc',
'update/rewrite_files.cc',
'update/row_delta.cc',
'update/set_snapshot.cc',
Expand Down
2 changes: 2 additions & 0 deletions src/iceberg/snapshot.h
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,8 @@ struct ICEBERG_EXPORT SnapshotSummaryFields {
inline static const std::string kEngineName = "engine-name";
/// \brief Version of the engine that created the snapshot
inline static const std::string kEngineVersion = "engine-version";
/// \brief Whether this is a replace-partitions operation
inline static const std::string kReplacePartitions = "replace-partitions";
};

/// \brief Helper class for building snapshot summaries.
Expand Down
3 changes: 2 additions & 1 deletion src/iceberg/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ if(ICEBERG_BUILD_BUNDLE)
update_schema_test.cc
update_sort_order_test.cc
update_statistics_test.cc
overwrite_files_test.cc)
overwrite_files_test.cc
replace_partitions_test.cc)

add_iceberg_test(data_test
USE_BUNDLE
Expand Down
Loading
Loading