diff --git a/storage/innobase/include/trx0rec.ic b/storage/innobase/include/trx0rec.ic index 8e16a76c74e..5ae34c486cc 100644 --- a/storage/innobase/include/trx0rec.ic +++ b/storage/innobase/include/trx0rec.ic @@ -65,7 +65,7 @@ trx_undo_rec_copy( len = mach_read_from_2(undo_rec) - ut_align_offset(undo_rec, UNIV_PAGE_SIZE); - ut_a(len < UNIV_PAGE_SIZE); + ut_ad(len < UNIV_PAGE_SIZE); trx_undo_rec_t* rec = static_cast( mem_heap_dup(heap, undo_rec, len)); mach_write_to_2(rec, len);