Skip to content

Commit

Permalink
Follow-up to MDEV-14837: Relax a too strict assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Jan 9, 2018
1 parent fe79ac5 commit 0b597d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/innobase/rem/rem0rec.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1848,7 +1848,7 @@ rec_copy_prefix_to_buf(
ulint null_mask;
bool is_rtr_node_ptr = false;

ut_ad(n_fields <= index->n_fields);
ut_ad(n_fields <= index->n_fields || dict_index_is_ibuf(index));
ut_ad(index->n_core_null_bytes <= UT_BITS_IN_BYTES(index->n_nullable));
UNIV_PREFETCH_RW(*buf);

Expand Down

0 comments on commit 0b597d3

Please sign in to comment.