* testTableEntrySerialization
*/
@Test
public void testTableEntrySerialization() throws Exception {
Table catalog_tbl = this.getTable("DISTRICT");
Column catalog_col = this.getColumn(catalog_tbl, "D_W_ID");
Table parent_tbl = this.getTable("WAREHOUSE");
Column parent_col = this.getColumn(parent_tbl, "W_ID");
TableEntry entries[] = {
new TableEntry(PartitionMethodType.REPLICATION, null, null, null),
new TableEntry(PartitionMethodType.HASH, catalog_col, null, null),
new TableEntry(PartitionMethodType.MAP, catalog_col, parent_tbl, parent_col),