1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-18636 The test case for bug mdev-16765 crashes the server

in the tree bb-10.4-mdev7486

The crash was caused because of the similar problem as in mdev-16765:
Item_cond::excl_dep_on_group_fields_for_having_pushdown() was missing.
This commit is contained in:
Galina Shalygina
2019-02-19 01:05:56 +03:00
parent d25af33116
commit 9741930490
4 changed files with 221 additions and 8 deletions

View File

@@ -3011,6 +3011,7 @@ public:
bool eval_not_null_tables(void *opt_arg);
Item *build_clone(THD *thd);
bool excl_dep_on_grouping_fields(st_select_lex *sel);
bool excl_dep_on_group_fields_for_having_pushdown(st_select_lex *sel);
};
template <template<class> class LI, class T> class Item_equal_iterator;