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:
@ -648,7 +648,7 @@ string Row::toString() const
|
||||
os << buf << " ";
|
||||
break;
|
||||
}
|
||||
// fallthrough if the legacy DECIMAL
|
||||
//fallthrough
|
||||
default:
|
||||
os << getIntField(i) << " ";
|
||||
break;
|
||||
@ -712,6 +712,7 @@ string Row::toCSV() const
|
||||
}
|
||||
case CalpontSystemCatalog::BINARY:
|
||||
std::cout << __FILE__<< __LINE__ << ":" << "toCSV"<< std::endl;
|
||||
//fallthrough
|
||||
|
||||
default:
|
||||
os << getIntField(i);
|
||||
@ -1789,6 +1790,7 @@ void RowGroup::addToSysDataList(execplan::CalpontSystemCatalog::NJLSysDataList&
|
||||
|
||||
case CalpontSystemCatalog::BINARY:
|
||||
std::cout << __FILE__<< __LINE__ << __func__<< std::endl;
|
||||
//fallthrough
|
||||
default:
|
||||
cr->PutData(row.getIntField<8>(j));
|
||||
}
|
||||
|
Reference in New Issue
Block a user