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-2139 syntax update based on feedback
This commit is contained in:
@ -5664,7 +5664,9 @@ void gp_walk(const Item* item, void* arg)
|
|||||||
|
|
||||||
if (col->type() == Item::FIELD_ITEM)
|
if (col->type() == Item::FIELD_ITEM)
|
||||||
{
|
{
|
||||||
gwip->columnMap.insert(CalpontSelectExecutionPlan::ColumnMap::value_type(string(((Item_field*)item)->field_name.str), scsp));
|
const auto &field_name = string(((Item_field*)item)->field_name.str);
|
||||||
|
auto col = CalpontSelectExecutionPlan::ColumnMap::value_type(field_name, scsp);
|
||||||
|
gwip->columnMap.insert(col);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user