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 2139 Fix subquery not being filtered when using view
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user