mariadb/mysql-test/suite/sys_vars/t/mdev_32640.test
Yuchen Pei b86a2f03b6
MDEV-32640 Reset thd->lex->mi.connection_name.str towards the end of mysql_execute_command
Reset the connection_name to contain a null string, if the pointer
points to the same space as that of the system variable
default_master_connection.

We do this because the system variable may be updated which could free
the pointer and create a new one, causing use-after-free for
re-execution of prepared statements and stored procedures where the
LEX may be reused.

This allows connection_name to be set again be to the system variable
pointer in the next call of this function (see earlier in this
function), after any possible updates to the system variable.
2024-05-07 14:54:13 +10:00

18 lines
516 B
Text

--source include/not_embedded.inc
PREPARE s_1 FROM 'SHOW RELAYLOG EVENTS';
/* 1 */ SET default_master_connection='MASTER';
--error WARN_NO_MASTER_INFO
/* 1 */ EXECUTE s_1;
/* 2 */ SET default_master_connection='MASTER';
--error WARN_NO_MASTER_INFO
/* 2 */ EXECUTE s_1;
create procedure p() SHOW RELAYLOG EVENTS;
/* 1 */ SET default_master_connection='MASTER';
--error WARN_NO_MASTER_INFO
/* 1 */ call p;
/* 2 */ SET default_master_connection='MASTER';
--error WARN_NO_MASTER_INFO
/* 2 */ call p;
drop procedure p;