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 Refactored MultiplicationOverflowCheck but it still has flaws.
Introduced fDecimalOverflowCheck to enable/disable overflow check. Add support into a FunctionColumn. Low level scanning crashes on medium sized data sets.
This commit is contained in:
@ -62,7 +62,7 @@ namespace execplan
|
||||
*/
|
||||
ArithmeticColumn::ArithmeticColumn():
|
||||
ReturnedColumn(),
|
||||
fExpression (0)
|
||||
fExpression(0)
|
||||
{}
|
||||
|
||||
ArithmeticColumn::ArithmeticColumn(const string& sql, const uint32_t sessionID):
|
||||
@ -314,8 +314,7 @@ const string ArithmeticColumn::toString() const
|
||||
|
||||
oss << "expressionId=" << fExpressionId << endl;
|
||||
oss << "joinInfo=" << fJoinInfo << " returnAll=" << fReturnAll << " sequence#=" << fSequence << endl;
|
||||
oss << "resultType=" << colDataTypeToString(fResultType.colDataType) << "|" << fResultType.colWidth <<
|
||||
endl;
|
||||
oss << "resultType=" << colDataTypeToString(fResultType.colDataType) << "|" << fResultType.colWidth << endl;
|
||||
return oss.str();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user