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.h | |
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.h')
-rw-r--r-- | sql/sp_rcontext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp_rcontext.h b/sql/sp_rcontext.h index 00fbf3e13ab..1634367bfa9 100644 --- a/sql/sp_rcontext.h +++ b/sql/sp_rcontext.h @@ -433,7 +433,7 @@ private: void set_spvar_list(List<sp_variable> *vars) { spvar_list= vars; } virtual bool send_eof() { return FALSE; } - virtual bool send_data(List<Item> &items); + virtual int send_data(List<Item> &items); virtual int prepare(List<Item> &list, SELECT_LEX_UNIT *u); }; |