public class TestSchemaMap {
@Test
public void testSchemaValid1() throws ParseException {
String strSch = "f1:int, m1:map(int)";
TableSchemaParser parser;
Schema schema;
parser = new TableSchemaParser(new StringReader(strSch));
schema = parser.RecordSchema(null);
System.out.println(schema);
// test 1st level schema;
ColumnSchema f1 = schema.getColumn(0);
Assert.assertEquals("f1", f1.name);