private InspectableObject fetchColumnStats() throws IOException, CommandNeedRetryException {
try {
InspectableObject io = ftOp.getNextRow();
if (io == null) {
throw new CommandNeedRetryException();
}
return io;
} catch (CommandNeedRetryException e) {
throw e;
} catch (IOException e) {