Adding a break before default in switch

This commit is contained in:
Jakub Kuklis 2021-07-29 14:39:51 +02:00
parent e3a96cc870
commit 2fad1dd8c5

View File

@ -581,6 +581,7 @@ protected:
case PatternActionType::TimeEqual:
if (!find_deterministic_part())
return false;
break;
default:
throw Exception{"Unknown PatternActionType", ErrorCodes::LOGICAL_ERROR};
}