summaryrefslogtreecommitdiff
path: root/sql/sp.cc
diff options
context:
space:
mode:
authorRucha Deodhar <rucha.deodhar@mariadb.com>2021-04-26 17:11:51 +0530
committerRucha Deodhar <rucha.deodhar@mariadb.com>2021-04-26 17:11:51 +0530
commitf73166cded0ee5a3b8615d16a0d91dfd8e867dba (patch)
tree21a10d71e7ef63e8a718bfc8540745c1f7167e1b /sql/sp.cc
parent54c460ace606157f2a23706ec98e9de70aba767e (diff)
downloadmariadb-git-bb-10.3-MDEV-25462.tar.gz
MDEV-25462: Assertion `m_status == DA_ERROR || m_status == DA_OK ||bb-10.3-MDEV-25462
m_status == DA_OK_BULK' failed in Diagnostics_area::message from get_schema_tables_record Analysis: When parsing takes place and we get ER_PARSE_ERROR, error is not set because we assume we are parsing a stored procedure. Fix: Set error status if error is ER_PARSE_ERROR and we are not parsing a stored procedure.
Diffstat (limited to 'sql/sp.cc')
-rw-r--r--sql/sp.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sp.cc b/sql/sp.cc
index ac9203ffb8a..4696ab8f0ae 100644
--- a/sql/sp.cc
+++ b/sql/sp.cc
@@ -870,6 +870,7 @@ static sp_head *sp_compile(THD *thd, String *defstr, sql_mode_t sql_mode,
thd->lex->sphead= parent;
thd->push_internal_handler(&warning_handler);
thd->spcont= 0;
+ thd->is_parsing_IS_table=true;
if (parse_sql(thd, & parser_state, creation_ctx) || thd->lex == NULL)
{