1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

fix for message being sent in EXPLAIN ...

This commit is contained in:
Sinisa@sinisa.nasamreza.org
2002-11-18 20:58:04 +02:00
parent b9a671f267
commit 4cec1660da
2 changed files with 3 additions and 2 deletions

View File

@ -882,7 +882,8 @@ bool select_singleval_subselect::send_data(List<Item> &items)
DBUG_ENTER("select_singleval_subselect::send_data");
Item_singleval_subselect *it= (Item_singleval_subselect *)item;
if (it->assigned()){
my_message(ER_SUBSELECT_NO_1_ROW, ER(ER_SUBSELECT_NO_1_ROW), MYF(0));
if (!current_thd->lex.describe)
my_message(ER_SUBSELECT_NO_1_ROW, ER(ER_SUBSELECT_NO_1_ROW), MYF(0));
DBUG_RETURN(1);
}
if (unit->offset_limit_cnt)