CatalogType other = entry.getOther(catalog_col);
assertNotNull(other);
if ((other instanceof Column) == false) continue;
Column other_col = (Column)other;
System.err.println(String.format("catalog_col=%s, other_tbl=%s, other_col=%s",
catalog_col.fullName(), other_tbl.fullName(), other_col.fullName()));
assertEquals(e.toString(), other_tbl, other_col.getParent());
// Make sure that the table's partitioning column matches
assertEquals(String.format("%s<-->%s\n%s", catalog_tbl, other_tbl, e.toString()), other_tbl.getPartitioncolumn(), other_col);
} // FOR (Edge)