Skip to content

Commit

Permalink
Enable Row Tracking outside of testing
Browse files Browse the repository at this point in the history
  • Loading branch information
johanl-db committed Sep 15, 2023
1 parent 19b6c9e commit 4bf58f5
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,8 @@ object TableFeature {
TimestampNTZTableFeature,
IcebergCompatV1TableFeature,
DeletionVectorsTableFeature,
V2CheckpointTableFeature)
V2CheckpointTableFeature,
RowTrackingFeature)
if (DeltaUtils.isTesting) {
features ++= Set(
TestLegacyWriterFeature,
Expand All @@ -341,9 +342,7 @@ object TableFeature {
TestRemovableLegacyReaderWriterFeature,
TestFeatureWithDependency,
TestFeatureWithTransitiveDependency,
TestWriterFeatureWithTransitiveDependency,
// Row IDs are still under development and only available in testing.
RowTrackingFeature)
TestWriterFeatureWithTransitiveDependency)
}
val featureMap = features.map(f => f.name.toLowerCase(Locale.ROOT) -> f).toMap
require(features.size == featureMap.size, "Lowercase feature names must not duplicate.")
Expand Down

0 comments on commit 4bf58f5

Please sign in to comment.