if (m_tableStatsDir.exists() == false) m_tableStatsDir.mkdirs();
File path = new File(m_tableStatsDir.getAbsolutePath() + "/" + this.getProjectName() + ".stats");
LOG.info("Writing table statistics data to '" + path + "'");
try {
stats.save(path);
} catch (IOException ex) {
throw new RuntimeException("Failed to save table statistics to '" + path + "'", ex);
}
}