dsp.setProperty(Constants.SERIALIZATION_FORMAT, org.apache.hadoop.hive.serde2.thrift.TCTLSeparatedProtocol.class.getName());
dsp.setProperty(org.apache.hadoop.hive.metastore.api.Constants.META_TABLE_NAME, "result");
dsp.setProperty(Constants.SERIALIZATION_DDL, client.getSchema());
dsp.setProperty(Constants.SERIALIZATION_LIB, ds.getClass().toString());
dsp.setProperty(Constants.FIELD_DELIM, "9");
ds.initialize(new Configuration(), dsp);
String row = client.fetchOne();
Object o = ds.deserialize(new BytesWritable(row.getBytes()));
assertEquals(o.getClass().toString(), "class java.util.ArrayList");