diff options
author | Igor Babaev <igor@askmonty.org> | 2011-12-06 13:42:18 -0800 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2011-12-06 13:42:18 -0800 |
commit | 7414a0b6d6307f8c2644660cf2f8daf986c25970 (patch) | |
tree | ca17cce5ee5593f0bd8360da8b259ef96ef6d331 /sql/sql_select.h | |
parent | b4c9fa321dd1fc08227333439695ec4314fb34c8 (diff) | |
download | mariadb-git-7414a0b6d6307f8c2644660cf2f8daf986c25970.tar.gz |
Fixed LP bug #900469.
The execution plan cannot use sorting on the first table from the
sequence of the joined tables if it plans to employ the block-based
hash join algorithm.
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r-- | sql/sql_select.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h index ffe3985c3c3..e24cab714fd 100644 --- a/sql/sql_select.h +++ b/sql/sql_select.h @@ -912,6 +912,7 @@ public: */ bool sort_and_group; bool first_record,full_join, no_field_update; + bool hash_join; bool do_send_rows; /** TRUE when we want to resume nested loop iterations when |