* @return
* @throws IOException
*/
Object nextVector(Object previousVector, long batchSize) throws IOException {
ColumnVector result = (ColumnVector) previousVector;
if (present != null) {
// Set noNulls and isNull vector of the ColumnVector based on
// present stream
result.noNulls = true;
for (int i = 0; i < batchSize; i++) {