Skip to content

Commit

Permalink
DRILL-2857: Update StreamingAggBatch current workspace record counter…
Browse files Browse the repository at this point in the history
… variable type to "long" to avoid overflow issues.
  • Loading branch information
vkorukanti committed Apr 27, 2015
1 parent fa0f1c5 commit a8c96f6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -36,7 +36,7 @@ public abstract class StreamingAggTemplate implements StreamingAggregator {
private int previousIndex = -1; private int previousIndex = -1;
private int underlyingIndex = 0; private int underlyingIndex = 0;
private int currentIndex; private int currentIndex;
private int addedRecordCount = 0; private long addedRecordCount = 0;
private IterOutcome outcome; private IterOutcome outcome;
private int outputCount = 0; private int outputCount = 0;
private RecordBatch incoming; private RecordBatch incoming;
Expand Down

0 comments on commit a8c96f6

Please sign in to comment.