mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
branches/zip: rec_convert_dtuple_to_rec_comp(): Relax a too tight assertion.
Spotted by Sunny.
This commit is contained in:
parent
965fb5709f
commit
115046f6cc
1 changed files with 2 additions and 1 deletions
|
@ -1048,7 +1048,8 @@ rec_convert_dtuple_to_rec_comp(
|
|||
ulint n_node_ptr_field;
|
||||
ulint fixed_len;
|
||||
ulint null_mask = 1;
|
||||
ut_ad(dict_table_is_comp(index->table));
|
||||
ut_ad(extra == 0 || dict_table_is_comp(index->table));
|
||||
ut_ad(extra == 0 || extra == REC_N_NEW_EXTRA_BYTES);
|
||||
ut_ad(n_fields > 0);
|
||||
|
||||
switch (UNIV_EXPECT(status, REC_STATUS_ORDINARY)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue