diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2011-06-22 01:57:28 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2011-06-22 01:57:28 +0400 |
commit | 6adddca80ec5ec972067917c54465d051b7d1cf4 (patch) | |
tree | a57908fb25ab407c1262a1873a1f436478191cb6 /sql/item_cmpfunc.h | |
parent | e1d734f383ce173871f8715eef273bdd0e070cc5 (diff) | |
download | mariadb-git-6adddca80ec5ec972067917c54465d051b7d1cf4.tar.gz |
Make semi-joins work with outer joins part #1:
- Make make_outerjoin_info() correctly process semi-join nests
- Make make_join_select() attach conditions to the right places.
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r-- | sql/item_cmpfunc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index 285367ba9d6..e587ffd0771 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -1688,7 +1688,8 @@ public: friend class Item_equal_fields_iterator; friend Item *eliminate_item_equal(COND *cond, COND_EQUAL *upper_levels, Item_equal *item_equal); - friend bool setup_sj_materialization(struct st_join_table *tab); + friend bool setup_sj_materialization_part1(struct st_join_table *tab); + friend bool setup_sj_materialization_part2(struct st_join_table *tab); }; class COND_EQUAL: public Sql_alloc |