diff options
author | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2008-12-24 19:26:48 +0400 |
---|---|---|
committer | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2008-12-24 19:26:48 +0400 |
commit | bcfa0cedb26c372ed978d54d8f3d785d616132fa (patch) | |
tree | cb4bded9c5cfe49770c4ed0113dabbabb240da91 /sql/sql_select.h | |
parent | e75ba73a0762c159984498a06580f323caa2b72c (diff) | |
parent | ce985aa36e2fb9cb036ae66376bf3c0dfab433be (diff) | |
download | mariadb-git-bcfa0cedb26c372ed978d54d8f3d785d616132fa.tar.gz |
5.0-bugteam->5.1-bugteam merge
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r-- | sql/sql_select.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h index be159c523e0..c5961f097c2 100644 --- a/sql/sql_select.h +++ b/sql/sql_select.h @@ -285,7 +285,11 @@ public: fetching data from a cursor */ bool resume_nested_loop; - table_map const_table_map,found_const_table_map,outer_join; + table_map const_table_map,found_const_table_map; + /* + Bitmap of all inner tables from outer joins + */ + table_map outer_join; ha_rows send_records,found_records,examined_rows,row_limit, select_limit; /** Used to fetch no more than given amount of rows per one |