Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
10.2.9
Description
mariadb-10.2.9/sql/log_event.cc:7671]: (style) Boolean result is used in bitwise operation. Clarify expression with parentheses.
|
Source code is
if (!print_event_info->short_form & !is_flashback) |
Maybe better code
if (!print_event_info->short_form && !is_flashback) |