You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
Fix warnings found in DEBUG combined build
Fixes: * Irrelevant where conditions * Irrelevant const * A potential infinite loop in treenode * Bad implicit case fallthroughs * Explicit markings for required case fallthroughs * Unused variables * Unused function Also disabled some warnings for now which we should fix later.
This commit is contained in:
@ -749,6 +749,7 @@ void TupleJoiner::doneInserting()
|
||||
case CalpontSystemCatalog::UFLOAT:
|
||||
{
|
||||
uniquer.insert(*(int64_t*)&dval);
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
@ -1104,6 +1105,7 @@ void TupleJoiner::updateCPData(const Row& r)
|
||||
case CalpontSystemCatalog::UFLOAT:
|
||||
{
|
||||
uval = *(uint64_t*)&dval;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
@ -1136,6 +1138,7 @@ void TupleJoiner::updateCPData(const Row& r)
|
||||
case CalpontSystemCatalog::UFLOAT:
|
||||
{
|
||||
val = *(int64_t*)&dval;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
|
Reference in New Issue
Block a user