mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
20e706689d
mysql-test/suite/innodb/t/group_commit_crash.test: remove autoincrement to avoid rbr being used for insert ... select mysql-test/suite/innodb/t/group_commit_crash_no_optimize_thread.test: remove autoincrement to avoid rbr being used for insert ... select mysys/my_addr_resolve.c: a pointer to a buffer is returned to the caller -> the buffer cannot be on the stack mysys/stacktrace.c: my_vsnprintf() is ok here, in 5.5
16 lines
416 B
Text
16 lines
416 B
Text
#
|
|
# Bug#11754376 45976: INNODB LOST FILES FOR TEMPORARY TABLES ON GRACEFUL SHUTDOWN
|
|
#
|
|
|
|
-- source include/have_debug.inc
|
|
-- source include/have_innodb.inc
|
|
|
|
CREATE TABLE bug11754376 (c INT) ENGINE=INNODB;
|
|
|
|
# This will invoke test_normalize_table_name_low() in debug builds
|
|
|
|
SET SESSION DEBUG_DBUG='+d,test_normalize_table_name_low';
|
|
|
|
DROP TABLE bug11754376;
|
|
|
|
SET SESSION DEBUG_DBUG='-d,test_normalize_table_name_low';
|