You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-4173 This patch adds support for wide-DECIMAL INNER, OUTER, SEMI, functional JOINs
based on top of TypelessData
This commit is contained in:
@ -1068,7 +1068,7 @@ void RowAggregation::makeAggFieldsNull(Row& row)
|
||||
case execplan::CalpontSystemCatalog::DECIMAL:
|
||||
case execplan::CalpontSystemCatalog::UDECIMAL:
|
||||
{
|
||||
int colWidth = fRowGroupOut->getColumnWidth(colOut);
|
||||
uint32_t colWidth = fRowGroupOut->getColumnWidth(colOut);
|
||||
if (LIKELY(colWidth == datatypes::MAXDECIMALWIDTH))
|
||||
{
|
||||
uint32_t offset = row.getOffset(colOut);
|
||||
@ -1095,7 +1095,7 @@ void RowAggregation::makeAggFieldsNull(Row& row)
|
||||
case execplan::CalpontSystemCatalog::VARBINARY:
|
||||
case execplan::CalpontSystemCatalog::BLOB:
|
||||
{
|
||||
int colWidth = fRowGroupOut->getColumnWidth(colOut);
|
||||
uint32_t colWidth = fRowGroupOut->getColumnWidth(colOut);
|
||||
|
||||
if (colWidth <= datatypes::MAXLEGACYWIDTH)
|
||||
{
|
||||
|
Reference in New Issue
Block a user