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
Original file line number Diff line number Diff line change
Expand Up @@ -287,4 +287,15 @@ public static void enforceFeatureEnabledOrThrow(
+ "This should only be set to 'true' for tests!")
.defaultValue(false)
.buildFeatureConfiguration();

public static final FeatureConfiguration<Boolean> ICEBERG_ROLLBACK_COMPACTION_ON_CONFLICTS =
PolarisConfiguration.<Boolean>builder()
.key("ICEBERG_ROLLBACK_COMPACTION_ON_CONFLICTS")
.catalogConfig("polaris.config.rollback.compaction.on-conflicts.enabled")
.description(
"Rollback replace snapshots created by compaction which have "
+ "polaris.internal.conflict-resolution.by-operation-type.replace property set to rollback "
+ "in their snapshot summary")
.defaultValue(false)
.buildFeatureConfiguration();
}
Loading
Loading