Arrays.asList(new Text("666-677-9999"))));
map.put(new Text("Bob"), OrcUtils.createOrcStruct(Person.TYPE_INFO, new Text("Bob"), new IntWritable(26),
Arrays.asList(new Text("999-888-1132"), new Text("000-222-9934"))));
map.put(new Text("David"), null);
OrcStruct s = OrcUtils.createOrcStruct(AddressBook.TYPE_INFO, new Text("John Smith"),
Arrays.asList(new Text("919-333-4452"), new Text("650-777-4329")), map, new TimestampWritable(now),
new BytesWritable(signature));
OrcWritable w = new OrcWritable();
w.set(s);
testInputOutputFn(ptype, ab, w);