@Test
public void testStorageValid2() {
try {
String strStorage = "[c1.f1]";
Partition p = new Partition(schema.toString(), strStorage);
Assert.assertTrue(false);
CGSchema[] cgschemas = p.getCGSchemas();
// 2 column group;
int size = cgschemas.length;
Assert.assertEquals(size, 2);
System.out.println("********** Column Groups **********");
for (int i = 0; i < cgschemas.length; i++) {
System.out.println(cgschemas[i]);
System.out.println("--------------------------------");
}
CGSchema cgs1 = cgschemas[0];
CGSchema cgs2 = cgschemas[1];
ColumnSchema f11 = cgs1.getSchema().getColumn(0);
Assert.assertEquals("c1.f1", f11.name);
Assert.assertEquals(ColumnType.INT, f11.type);
ColumnSchema f21 = cgs2.getSchema().getColumn(0);
Assert.assertEquals("c1.f2", f21.name);
Assert.assertEquals(ColumnType.INT, f21.type);
ColumnSchema f22 = cgs2.getSchema().getColumn(1);
Assert.assertEquals("c2", f22.name);
Assert.assertEquals(ColumnType.COLLECTION, f22.type);
System.out.println("*********** Column Map **********");
Map<String, HashSet<Partition.PartitionInfo.ColumnMappingEntry>> colmap = p
.getPartitionInfo().getColMap();
Assert.assertEquals(colmap.size(), 3);
Iterator<Map.Entry<String, HashSet<Partition.PartitionInfo.ColumnMappingEntry>>> it = colmap
.entrySet().iterator();
for (int i = 0; i < colmap.size(); i++) {