335336337338339340341342343344345
schemaToLog = t.getName().schema; writeTableInit(t); RowIterator it = t.rowIteratorClustered(currentSession); while (it.hasNext()) { Row row = it.getNextRow(); writeRow(currentSession, row, t);
322323324325326327328329330331332
324325326327328329330331332333334