diff options
author | unknown <sanja@montyprogram.com> | 2013-06-26 13:17:27 +0300 |
---|---|---|
committer | unknown <sanja@montyprogram.com> | 2013-06-26 13:17:27 +0300 |
commit | e7606294b2bbd70be118cc81c5818dc643a770bf (patch) | |
tree | d05c1db1f8b3c4120a62c7ecb0d07f65b3fe75c6 /sql/sql_union.cc | |
parent | 68929e8e3f7e469ac5a56f120d9985574ad82b43 (diff) | |
download | mariadb-git-e7606294b2bbd70be118cc81c5818dc643a770bf.tar.gz |
A fix of unions with duplicate rows and returning bug fix for lp:732124 union + limit returns wrong result
Diffstat (limited to 'sql/sql_union.cc')
-rw-r--r-- | sql/sql_union.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_union.cc b/sql/sql_union.cc index fe361801c35..6a1e4d745e8 100644 --- a/sql/sql_union.cc +++ b/sql/sql_union.cc @@ -52,7 +52,7 @@ int select_union::prepare(List<Item> &list, SELECT_LEX_UNIT *u) } -bool select_union::send_data(List<Item> &values) +int select_union::send_data(List<Item> &values) { if (unit->offset_limit_cnt) { // using limit offset,count |