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-641 Fix alter table add wide decimal column.
This patch also removes CalpontSystemCatalog::BINARY and ddlpackage::DDL_BINARY that were added during the initial stages of the work on MCOL-641.
This commit is contained in:
@ -703,15 +703,6 @@ void SimpleColumn::evaluate(Row& row, bool& isNull)
|
||||
break;
|
||||
}
|
||||
|
||||
case CalpontSystemCatalog::BINARY:
|
||||
|
||||
{
|
||||
// WIP MCOL-641 Binary representation could contain \0.
|
||||
std::string value(row.getBinaryField<char>(fInputIndex));
|
||||
fResult.strVal.swap(value);
|
||||
break;
|
||||
}
|
||||
|
||||
default: // treat as int64
|
||||
{
|
||||
fResult.intVal = row.getUintField<8>(fInputIndex);
|
||||
|
Reference in New Issue
Block a user