Skip to content

Commit

Permalink
add new field updatedRows to QueryStatistics.java where it's availabl…
Browse files Browse the repository at this point in the history
…e in EventListener callbacks. It comes from TableMutationOperator.java where update/delete queries are issued.
  • Loading branch information
bhzaeri committed Jan 24, 2025
1 parent 017d9a0 commit c73e36a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,7 @@ private QueryStats getQueryStats(Optional<StageInfo> rootStage, List<StageInfo>
outputDataSize += outputStageStats.getOutputDataSize().toBytes();
failedOutputDataSize += outputStageStats.getFailedOutputDataSize().toBytes();
outputPositions += outputStageStats.getOutputPositions();
updatedPositions += outputStageStats.getUpdatedPositions();
failedOutputPositions += outputStageStats.getFailedOutputPositions();
}

Expand Down

0 comments on commit c73e36a

Please sign in to comment.