1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

MCOL 2139 Fix subquery not being filtered when using view

This commit is contained in:
jmrojas2332
2020-01-28 17:43:40 +00:00
parent 4116d3b2d7
commit 009a4aea1d

View File

@@ -5664,6 +5664,11 @@ void gp_walk(const Item* item, void* arg)
{
boost::shared_ptr<SimpleColumn> scsp(sc->clone());
gwip->scsp = scsp;
if (col->type() == Item::FIELD_ITEM)
{
gwip->columnMap.insert(CalpontSelectExecutionPlan::ColumnMap::value_type(string(((Item_field*)item)->field_name.str), scsp));
}
}
bool cando = true;