if (i >= num_tuples) break;
VoltTableRow tuple = voltTable.fetchRow(i);
for (int j = 0; j < num_columns; j++) {
loader_query.params[j] = tuple.get(j, col_types[j]);
} // FOR
table_stats.process(stats_catalog_db, loader_xact);
if (show_progress && i > 0 && i % 10000 == 0) LOG.info(i + " tuples");
// if (i > 25000) break;
} // FOR
LOG.info("Processing finished for " + catalog_tbl.getName());
} catch (Exception ex) {