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
MCOL-4666 Empty set when using BIT OR and BIT AND functions in WHERE
This commit is contained in:
@ -84,6 +84,16 @@ public:
|
||||
fTimeZone = timeZone;
|
||||
}
|
||||
|
||||
void raiseIllegalParameterDataTypeError(const execplan::CalpontSystemCatalog::ColType& colType) const
|
||||
{
|
||||
std::ostringstream oss;
|
||||
oss << "Illegal parameter data type "
|
||||
<< execplan::colDataTypeToString(colType.colDataType)
|
||||
<< " for operation "
|
||||
<< funcName();
|
||||
throw logging::IDBExcept(oss.str(), logging::ERR_DATATYPE_NOT_SUPPORT);
|
||||
}
|
||||
|
||||
virtual bool fix(execplan::FunctionColumn &col) const
|
||||
{
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user