Skip to content

Commit

Permalink
row_search_index_entry(): Simplify some assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Nov 30, 2020
1 parent 1fdc161 commit fc6a7e9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions storage/innobase/row/row0row.cc
Expand Up @@ -1292,7 +1292,7 @@ row_search_index_entry(
ut_ad(dtuple_check_typed(entry));

if (dict_index_is_spatial(index)) {
ut_ad(mode & BTR_MODIFY_LEAF || mode & BTR_MODIFY_TREE);
ut_ad(mode & (BTR_MODIFY_LEAF | BTR_MODIFY_TREE));
rtr_pcur_open(index, entry, PAGE_CUR_RTREE_LOCATE,
mode, pcur, mtr);
} else {
Expand All @@ -1301,7 +1301,8 @@ row_search_index_entry(

switch (btr_pcur_get_btr_cur(pcur)->flag) {
case BTR_CUR_DELETE_REF:
ut_a(mode & BTR_DELETE && !dict_index_is_spatial(index));
ut_ad(mode & BTR_DELETE);
ut_ad(!index->is_spatial());
return(ROW_NOT_DELETED_REF);

case BTR_CUR_DEL_MARK_IBUF:
Expand Down

0 comments on commit fc6a7e9

Please sign in to comment.