1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Change "disable semi-joins in presense of outer joins" check to actually

check for outer joins (and not for any "t1 SOME_JOIN t2 ON cond" syntax).
This commit is contained in:
Sergey Petrunya
2011-05-09 11:20:51 +01:00
parent 524e6aad73
commit 76fd8c1c2f
2 changed files with 29 additions and 1 deletions

View File

@ -701,7 +701,8 @@ public:
/* Tables removed by table elimination. Set to 0 before the elimination. */
table_map eliminated_tables;
/*
Bitmap of all inner tables from outer joins
Bitmap of all inner tables from outer joins (set at start of
make_join_statistics)
*/
table_map outer_join;
ha_rows send_records,found_records,examined_rows,row_limit, select_limit;