new BytesKey(result.getRow()), Hasher.HASH_SIZE_BYTES));
continue;
*/
// Get the row key, timestamp, and schema for this row
final BytesKey rowKey = new BytesKey(ByteUtils.toBytes(row.getBytes(SCHEMA_COLUMN_HASH_KEY)));
final long timestamp = row.getDate(SCHEMA_COLUMN_TIME).getTime();
final byte[] schemaAsBytes = ByteUtils.toBytes(row.getBytes(SCHEMA_COLUMN_VALUE));
try {
final SchemaEntry entry = fromAvroEntry(decodeSchemaEntry(schemaAsBytes));
entries.add(entry);
if (!getSchemaHash(entry.getSchema()).equals(entry.getHash())) {
LOG.error(
"Invalid schema hash table entry: computed schema hash {} does not match entry {}.",
getSchemaHash(entry.getSchema()), entry);
}
if (!rowKey.equals(entry.getHash())) {
LOG.error(
"Inconsistent schema hash table: hash encoded in row key {}"
+ " does not match schema entry: {}.",
rowKey, entry
);