Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
leaves12138 committed Apr 26, 2024
1 parent 6b540bd commit efdfa01
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,7 @@ case class DeleteFromPaimonTableCommand(
// 3) partition predicate can be visit by OnlyPartitionKeyEqualVisitor.
val forceDeleteByRows =
otherCondition.nonEmpty || partitionPredicate.isEmpty || !partitionPredicate.get.visit(
visitor) || (table.store().options().deleteForceProduceChangelog() && table
.store()
.options()
.changelogProducer() != CoreOptions.ChangelogProducer.NONE)
visitor) || table.store().options().deleteForceProduceChangelog()

if (forceDeleteByRows) {
val commitMessages = if (withPrimaryKeys) {
Expand Down

0 comments on commit efdfa01

Please sign in to comment.