actual = Schema.parse(Bytes.toString(schemaRow.getValue(Bytes.toBytes("avro"), Bytes.toBytes("s"))));
} finally {
pool.putTable(schemaTable);
}
DecoderFactory decoderFactory = new DecoderFactory();
JsonDecoder jd = decoderFactory.jsonDecoder(actual, Bytes.toString(userRow.getValue(COLUMN_FAMILY, Bytes.toBytes("d"))));
// Read it as a slightly different schema lacking a field
InputStream stream = getClass().getResourceAsStream("/src/test/avro/User2.avsc");
Schema expected = Schema.parse(stream);