Navigation Menu

Skip to content

Commit

Permalink
mariadb55: ignore MULT_EQUAL_FUNC for COUNT(*) skip
Browse files Browse the repository at this point in the history
    SELECT COUNT(*) FROM users WHERE age = 29;

generates MULT_EQUAL_FUNC on MariaDB 5.5...
  • Loading branch information
kou committed Jul 1, 2016
1 parent 83ade0f commit 3b7e0ab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ha_mroonga.cpp
Expand Up @@ -9987,6 +9987,8 @@ void ha_mroonga::check_count_skip(key_part_map start_key_part_map,
}
}
break;
case Item_func::MULT_EQUAL_FUNC:
break;
default:
target = NULL;
break;
Expand Down

0 comments on commit 3b7e0ab

Please sign in to comment.