Updating numeric first vector agg

This commit is contained in:
Soumyava Das 2023-08-16 17:06:57 -07:00
parent f58541273b
commit 4291709901
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public abstract class NumericFirstVectorAggregator implements VectorAggregator
final long[] timeVector = timeSelector.getLongVector(); final long[] timeVector = timeSelector.getLongVector();
final boolean[] nullTimeVector = timeSelector.getNullVector(); final boolean[] nullTimeVector = timeSelector.getNullVector();
final boolean[] nullValueVector = valueSelector.getNullVector(); final boolean[] nullValueVector = valueSelector.getNullVector();
firstTime = buf.getLong(position);
int index; int index;
// Now we are iterating over the values to find the minima as the // Now we are iterating over the values to find the minima as the
// timestamp expression in EARLIEST_BY has no established sorting order // timestamp expression in EARLIEST_BY has no established sorting order