From 80d3eee072025f34984e474ea160651eac9e11e5 Mon Sep 17 00:00:00 2001 From: Oleksandr Byelkin Date: Fri, 26 Jan 2018 16:59:53 +0100 Subject: MDEV-14857: problem with 10.2.11 server crashing when executing stored procedure Counter for select numbering made stored with the statement (before was global) So now it does have always accurate value which does not depend on interruption of statement prepare by errors like lack of table in a view definition. --- sql/sp.cc | 1 - 1 file changed, 1 deletion(-) (limited to 'sql/sp.cc') diff --git a/sql/sp.cc b/sql/sp.cc index 5a64c28865e..2e268e483e7 100644 --- a/sql/sp.cc +++ b/sql/sp.cc @@ -760,7 +760,6 @@ static sp_head *sp_compile(THD *thd, String *defstr, ulonglong sql_mode, else { sp= thd->lex->sphead; - sp->set_select_number(thd->select_number); } thd->pop_internal_handler(); -- cgit v1.2.1