mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
2682a280c8
storage/innobase/handler/handler0alter.cc: for NEWDATE key_type says unsigned, thus col->prtype says unsigned, but field->flags says signed. Use the same flag for value retrieval that was used for value storage.
13 lines
446 B
Text
13 lines
446 B
Text
# Test for 'innodb_lazy_drop_table' variable
|
|
--source include/have_xtradb.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;
|