System.out.println("parseCommandLog :" + latestFile.getAbsolutePath());
// Now read in the file back in and check to see that we have two
// entries that have our expected information
CommandLogReader reader = null;
try {
reader = new CommandLogReader(latestFile.getAbsolutePath());
} catch (Exception e) {
System.err.println("Command log not found :" + latestFile.getAbsolutePath());
return;
}
int ctr = 0;
Iterator<LogEntry> log_itr = reader.iterator();
ClientResponse cresponse = null;
Client client = this.getClient();
CatalogContext cc = this.getCatalogContext();
VoltTable results[] = null;