Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
HeartSaVioR committed Jun 21, 2019
1 parent 8ef9f1c commit 80787ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ trait ProgressReporter extends Logging {
lastExecution.executedPlan.collect {
case p if p.isInstanceOf[StateStoreWriter] =>
val progress = p.asInstanceOf[StateStoreWriter].getProgress()
if (hasNewData) progress else progress.copy(newNumRowsUpdated = 0, newNumRowsDiscarded = 0)
if (hasNewData) progress else progress.copy(newNumRowsUpdated = 0, newNumLateInputRows = 0)
}
}

Expand Down

0 comments on commit 80787ec

Please sign in to comment.