for (DesignerVertex v : agraph.getVertices()) {
Table catalog_tbl = v.getCatalogItem();
String table_key = CatalogKey.createKey(catalog_tbl);
Collection<Column> forced_columns = hints.getForcedTablePartitionCandidates(catalog_tbl);
TableStatistics ts = info.stats.getTableStatistics(catalog_tbl);
assert (ts != null) : "Null TableStatistics for " + catalog_tbl;
double partition_size = (calculate_memory ? (ts.tuple_size_total / (double) info.getNumPartitions()) : 0);
double partition_ratio = (calculate_memory ? (ts.tuple_size_total / (double) hints.max_memory_per_partition) : 0);
TableEntry pentry = null;