mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +01:00
branches/zip: row_ext_cache_fill(): Add a missing "else" that should have
been added in r2131.
This commit is contained in:
parent
690566c36a
commit
e8bb749dbd
1 changed files with 6 additions and 5 deletions
|
@ -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);
|
||||
buf, REC_MAX_INDEX_COL_LEN, zip_size, field, f_len);
|
||||
ut_a(ext->len[i]);
|
||||
}
|
||||
}
|
||||
|
||||
/************************************************************************
|
||||
|
|
Loading…
Add table
Reference in a new issue