1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-1052 WIP Replace SimpleColumn with ConstantColumn when server pushes equal predicate using cond_push.

This commit is contained in:
Roman Nozdrin
2018-04-29 21:13:11 +03:00
parent f8c08f8b0b
commit fdbf82e48d
3 changed files with 100 additions and 5 deletions

View File

@ -211,6 +211,7 @@ struct cal_group_info
ORDER* groupByOrder; // MCOL-1052 ORDER BY
Item* groupByHaving; // MCOL-1052 HAVING
bool groupByDistinct; //MCOL-1052 DISTINCT
std::vector<execplan::ParseTree*> pushedPts;
};
typedef std::tr1::unordered_map<TABLE*, cal_table_info> CalTableMap;