Commit 771ed407 authored by marko's avatar marko

branches/zip: row_ext_cache_fill(): Add a missing "else" that should have

been added in r2131.
parent b385d9ab
......@@ -38,12 +38,13 @@ row_ext_cache_fill(
BTR_EXTERN_FIELD_REF_SIZE))) {
/* The BLOB pointer is not set: we cannot fetch it */
ext->len[i] = 0;
} else {
/* Fetch at most REC_MAX_INDEX_COL_LEN of the column.
The column must be non-empty. */
ext->len[i] = btr_copy_externally_stored_field_prefix(
buf, REC_MAX_INDEX_COL_LEN, zip_size, field, f_len);
ut_a(ext->len[i]);
}
ext->len[i] = btr_copy_externally_stored_field_prefix(
buf,
REC_MAX_INDEX_COL_LEN, zip_size, field, f_len);
ut_a(ext->len[i]);
}
/************************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment