Skip to content

Commit

Permalink
Delete omitVoidPartitionFields from Config interface and impl
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Igliozzi committed Sep 17, 2024
1 parent eeb0038 commit 4df3b3f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -643,11 +643,5 @@ public interface Config {
*/
ParentChildRelationshipProperties getParentChildRelationshipProperties();

/**
* Whether we want to omit void transform partition from current partitions.
*
* @return True if it should be omitted
*/
boolean omitVoidTransformEnabled();
}

Original file line number Diff line number Diff line change
Expand Up @@ -703,9 +703,4 @@ public boolean isParentChildDropEnabled() {
public ParentChildRelationshipProperties getParentChildRelationshipProperties() {
return this.metacatProperties.getParentChildRelationshipProperties();
}

@Override
public boolean omitVoidTransformEnabled() {
return this.metacatProperties.getPartitionColumnProperties().isOmitVoidPartitionEnabled();
}
}

0 comments on commit 4df3b3f

Please sign in to comment.