mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
1efdd5a572
(and to follow the naming conventons). keep old debug variable, but mark it as deprecated.
38 lines
787 B
Text
38 lines
787 B
Text
#
|
|
# DROP-related tests which execution requires debug server.
|
|
#
|
|
--source include/have_debug.inc
|
|
|
|
###########################################################################
|
|
--echo
|
|
--echo # --
|
|
--echo # -- Bug#43138: DROP DATABASE failure does not clean up message list.
|
|
--echo # --
|
|
--echo
|
|
|
|
--disable_warnings
|
|
DROP DATABASE IF EXISTS mysql_test;
|
|
--enable_warnings
|
|
|
|
--echo
|
|
CREATE DATABASE mysql_test;
|
|
CREATE TABLE mysql_test.t1(a INT);
|
|
CREATE TABLE mysql_test.t2(b INT);
|
|
CREATE TABLE mysql_test.t3(c INT);
|
|
|
|
--echo
|
|
SET SESSION debug_dbug= "+d,bug43138";
|
|
|
|
--echo
|
|
--sorted_result
|
|
DROP DATABASE mysql_test;
|
|
|
|
--echo
|
|
SET SESSION debug_dbug= "-d,bug43138";
|
|
|
|
--echo
|
|
--echo # --
|
|
--echo # -- End of Bug#43138.
|
|
--echo # --
|
|
|
|
###########################################################################
|