Future<ResultSet> future = theOneBatch.next();
ResultSet results = get(future);
cachedLastCols = new ArrayList<IndexColumn>().listIterator();
if(!results.isExhausted()) {
com.datastax.driver.core.Row row = results.one();
IndexColumn indexCol = Cql3Util.convertToIndexCol(row, indTable);
cachedLastCols.add(indexCol);
if(batchListener != null)
batchListener.afterFetchingNextBatch(10);
return new Holder<IndexColumn>(indexCol);