{
if (bool)
{
this.schemaToLog = localTable.getName().schema;
writeTableInit(localTable);
RowIterator localRowIterator = localTable.rowIterator(this.currentSession);
while (localRowIterator.hasNext())
writeRow(this.currentSession, localTable, localRowIterator.next().getData());
writeTableTerm(localTable);
}
}