summaryrefslogtreecommitdiff
path: root/storage/innobase/rem/rem0rec.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/innobase/rem/rem0rec.cc')
-rw-r--r--storage/innobase/rem/rem0rec.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/storage/innobase/rem/rem0rec.cc b/storage/innobase/rem/rem0rec.cc
index 0a3656b2c10..b72c55befb4 100644
--- a/storage/innobase/rem/rem0rec.cc
+++ b/storage/innobase/rem/rem0rec.cc
@@ -166,7 +166,7 @@ rec_get_n_extern_new(
ulint i;
ut_ad(dict_table_is_comp(index->table));
- ut_ad(!index->table->supports_instant() || index->is_dummy);
+ ut_ad(!index->table->supports_instant());
ut_ad(!index->is_instant());
ut_ad(rec_get_status(rec) == REC_STATUS_ORDINARY
|| rec_get_status(rec) == REC_STATUS_INSTANT);
@@ -283,8 +283,8 @@ rec_init_offsets_comp_ordinary(
ut_d(ulint n_null= 0);
if (mblob) {
- ut_ad(index->is_dummy || index->table->instant);
- ut_ad(index->is_dummy || index->is_instant());
+ ut_ad(index->table->instant);
+ ut_ad(index->is_instant());
ut_ad(rec_offs_n_fields(offsets)
<= ulint(index->n_fields) + 1);
ut_ad(!def_val);
@@ -908,8 +908,8 @@ rec_get_offsets_func(
memcpy(&offsets[INDEX_OFFSET], &index, sizeof index);
#endif /* UNIV_DEBUG */
ut_ad(leaf);
- ut_ad(index->is_dummy || index->table->instant);
- ut_ad(index->is_dummy || index->is_instant());
+ ut_ad(index->table->instant);
+ ut_ad(index->is_instant());
ut_ad(rec_offs_n_fields(offsets)
<= ulint(index->n_fields) + 1);
rec_init_offsets_comp_ordinary<true>(rec, index, offsets,