1
0
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:
Roman Nozdrin
2020-11-08 14:57:28 +00:00
parent 3eb26c0d4a
commit 15b1bfa709
11 changed files with 24 additions and 15 deletions

View File

@ -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));
}