You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Silence -Werror=implicit-fallthrough compiler errors - Patch from Monty.
The patch also fixes some potential bugs due to missing break statements.
This commit is contained in:
@ -3323,6 +3323,7 @@ ReturnedColumn* buildReturnedColumn(
|
||||
break;
|
||||
}
|
||||
}
|
||||
/* fall through */
|
||||
|
||||
case Item::NULL_ITEM:
|
||||
{
|
||||
@ -4828,6 +4829,7 @@ ReturnedColumn* buildAggregateColumn(Item* item, gp_walk_info& gwi)
|
||||
break;
|
||||
}
|
||||
}
|
||||
/* fall through */
|
||||
|
||||
default:
|
||||
{
|
||||
|
Reference in New Issue
Block a user