mirror of
https://github.com/MariaDB/server.git
synced 2026-05-17 20:37:12 +02:00
MDEV-31970 ASAN errors in grn_obj_unlink / ha_mroonga::clear_indexes upon index operations
from upstream
This commit is contained in:
parent
3267606bcd
commit
a6c0184534
1 changed files with 2 additions and 1 deletions
|
|
@ -14660,7 +14660,8 @@ enum_alter_inplace_result ha_mroonga::storage_check_if_supported_inplace_alter(
|
|||
ALTER_COLUMN_NAME;
|
||||
if (ha_alter_info->handler_flags & explicitly_unsupported_flags) {
|
||||
DBUG_RETURN(HA_ALTER_INPLACE_NOT_SUPPORTED);
|
||||
} else if (ha_alter_info->handler_flags & supported_flags) {
|
||||
} else if ((ha_alter_info->handler_flags & supported_flags) ==
|
||||
ha_alter_info->handler_flags) {
|
||||
DBUG_RETURN(HA_ALTER_INPLACE_EXCLUSIVE_LOCK);
|
||||
} else {
|
||||
DBUG_RETURN(HA_ALTER_INPLACE_NOT_SUPPORTED);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue