Commit 5dba54bf authored by Marko Mäkelä's avatar Marko Mäkelä

Correct misplaced parentheses in an assertion

parent f1ac8305
......@@ -3677,9 +3677,9 @@ int Id_delegating_gtid_event_filter<T>::set_id_restrictions(
{
DBUG_ASSERT(map_element->filter->get_filter_type() ==
(mode ==
Gtid_event_filter::id_restriction_mode::WHITELIST_MODE)
? Gtid_event_filter::ACCEPT_ALL_GTID_FILTER_TYPE
: Gtid_event_filter::REJECT_ALL_GTID_FILTER_TYPE);
Gtid_event_filter::id_restriction_mode::WHITELIST_MODE
? Gtid_event_filter::ACCEPT_ALL_GTID_FILTER_TYPE
: Gtid_event_filter::REJECT_ALL_GTID_FILTER_TYPE));
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment