diff options
author | Dmitry Shulga <dmitry.shulga@mariadb.com> | 2022-04-05 20:20:09 +0700 |
---|---|---|
committer | Dmitry Shulga <dmitry.shulga@mariadb.com> | 2022-04-05 20:20:09 +0700 |
commit | f6b09a7ce58f564d8e5c08c799d2fc45cfc10870 (patch) | |
tree | a0a505e469bdc8147d30dafdf0786c13a7314289 /sql/sql_select.cc | |
parent | c4ebb2bd04974807b3b81001fd2d733e75dfc1fb (diff) | |
download | mariadb-git-f6b09a7ce58f564d8e5c08c799d2fc45cfc10870.tar.gz |
MDEV-21173: Assertion `m_thd == __null' failed in sp_head::~sp_head
Some SQL statements that involves subqueries or stored routines could
fail since execution of subqueries or stored routines is not supported
for theses statements. Unfortunately, parsing error could result in
abnormal termination by firing the following assert
DBUG_ASSERT(m_thd == NULL);
in a destructor of the class sp_head.
The reason of the assert firing is that the method
sp_head::restore_thd_mem_root()
is not called on semantic action code to clean up resources allocated
during parsing. This happens since the macros YYABORT is called instead of
MYSQL_YYABORT by semantic action code for some grammar rules.
So, to fix the bug YYABORT was just replaced with MYSQL_YYABORT.
Diffstat (limited to 'sql/sql_select.cc')
0 files changed, 0 insertions, 0 deletions