1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +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 04526f04a6
commit f1285dd79e

View File

@ -5661,6 +5661,11 @@ void gp_walk(const Item* item, void* arg)
{ {
boost::shared_ptr<SimpleColumn> scsp(sc->clone()); boost::shared_ptr<SimpleColumn> scsp(sc->clone());
gwip->scsp = scsp; 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; bool cando = true;