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-712 Support TEXT for GROUP BY
Add missing support
This commit is contained in:
@ -307,6 +307,7 @@ void AggregateColumn::evaluate(Row& row, bool& isNull)
|
||||
case CalpontSystemCatalog::CHAR:
|
||||
case CalpontSystemCatalog::VARCHAR:
|
||||
case CalpontSystemCatalog::STRINT:
|
||||
case CalpontSystemCatalog::TEXT:
|
||||
switch (row.getColumnWidth(fInputIndex))
|
||||
{
|
||||
case 1:
|
||||
@ -461,6 +462,7 @@ void AggregateColumn::evaluate(Row& row, bool& isNull)
|
||||
}
|
||||
break;
|
||||
case CalpontSystemCatalog::VARBINARY:
|
||||
case CalpontSystemCatalog::BLOB:
|
||||
isNull = true;
|
||||
break;
|
||||
default: // treat as int64
|
||||
|
Reference in New Issue
Block a user