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
MCOL-641 Cleanup.
This commit is contained in:
@ -143,7 +143,7 @@ void SimpleColumn_Decimal<len>::setNullVal()
|
||||
fNullVal = joblist::TINYINTNULL;
|
||||
break;
|
||||
case 16:
|
||||
std::cout << __FILE__<< ":" <<__LINE__ << " Fix for 16 Bytes ?" << std::endl;
|
||||
// TODO MCOL-641
|
||||
//fallthrough
|
||||
default:
|
||||
fNullVal = joblist::BIGINTNULL;
|
||||
@ -233,8 +233,8 @@ void SimpleColumn_Decimal<len>::serialize(messageqcpp::ByteStream& b) const
|
||||
case 8:
|
||||
b << (ObjectReader::id_t) ObjectReader::SIMPLECOLUMN_DECIMAL8;
|
||||
break;
|
||||
case 16:
|
||||
std::cout << __FILE__<< ":" <<__LINE__ << " Fix for 16 Bytes ?" << std::endl;
|
||||
// TODO MCOL-641
|
||||
// case 16:
|
||||
}
|
||||
|
||||
SimpleColumn::serialize(b);
|
||||
@ -260,8 +260,8 @@ void SimpleColumn_Decimal<len>::unserialize(messageqcpp::ByteStream& b)
|
||||
case 8:
|
||||
ObjectReader::checkType(b, ObjectReader::SIMPLECOLUMN_DECIMAL8);
|
||||
break;
|
||||
case 16:
|
||||
std::cout << __FILE__<< ":" <<__LINE__ << " Fix 16 Bytes ?" << std::endl;
|
||||
// TODO MCOL-641
|
||||
// case 16:
|
||||
}
|
||||
|
||||
SimpleColumn::unserialize(b);
|
||||
|
Reference in New Issue
Block a user