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/sp_rcontext.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/sp_rcontext.cc')
-rw-r--r-- | sql/sp_rcontext.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp_rcontext.cc b/sql/sp_rcontext.cc index 3e79cb3fa36..afec3921a9b 100644 --- a/sql/sp_rcontext.cc +++ b/sql/sp_rcontext.cc @@ -517,7 +517,7 @@ int sp_cursor::Select_fetch_into_spvars::prepare(List<Item> &fields, } -bool sp_cursor::Select_fetch_into_spvars::send_data(List<Item> &items) +int sp_cursor::Select_fetch_into_spvars::send_data(List<Item> &items) { List_iterator_fast<sp_variable> spvar_iter(*spvar_list); List_iterator_fast<Item> item_iter(items); |