mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge XtraDB from Percona Server 5.1.56-12.7 into MariaDB-5.1.
This commit is contained in:
13
mysql-test/suite/percona/innodb_fix_misc_bug51325.test
Normal file
13
mysql-test/suite/percona/innodb_fix_misc_bug51325.test
Normal file
@ -0,0 +1,13 @@
|
||||
# Test for 'innodb_lazy_drop_table' variable
|
||||
--source include/have_innodb.inc
|
||||
--disable_warnings
|
||||
DROP TABLE IF EXISTS t1;
|
||||
--enable_warnings
|
||||
SET GLOBAL innodb_file_per_table=ON;
|
||||
SHOW VARIABLES LIKE 'innodb_lazy_drop_table';
|
||||
SET GLOBAL innodb_lazy_drop_table=1;
|
||||
SHOW VARIABLES LIKE 'innodb_lazy_drop_table';
|
||||
CREATE TABLE t1 (a INT) ENGINE=InnoDB;
|
||||
DROP TABLE t1;
|
||||
SET GLOBAL innodb_lazy_drop_table=default;
|
||||
SET GLOBAL innodb_file_per_table=default;
|
Reference in New Issue
Block a user