You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
Fix fallthrough compilation warnings
This commit is contained in:
@ -766,8 +766,8 @@ inline void store(const NewColRequestHeader* in,
|
||||
|
||||
default:
|
||||
std::cout << __func__ << " WARNING!!! unspecified column width." << std::endl;
|
||||
[[fallthrough]];
|
||||
|
||||
// fallthrough
|
||||
|
||||
case 8:
|
||||
ptr2 += (rid << 3);
|
||||
memcpy(ptr1, ptr2, 8);
|
||||
@ -1840,7 +1840,7 @@ void PrimitiveProcessor::p_Col(NewColRequestHeader* in, NewColResultHeader* out,
|
||||
|
||||
case 32:
|
||||
std::cout << __func__ << " WARNING!!! Not implemented for 32 byte data types." << std::endl;
|
||||
[[fallthrough]];
|
||||
// fallthrough
|
||||
|
||||
default:
|
||||
idbassert(0);
|
||||
|
Reference in New Issue
Block a user