summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/log_data_file_size.result
blob: ddb8e694e40fff7aabc1b0ef66cac206b8dae7cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
SET GLOBAL innodb_file_per_table=0;
Warnings:
Warning	1287	'@@innodb_file_per_table' is deprecated and will be removed in a future release
CREATE TABLE t(a INT)ENGINE=InnoDB;
SET GLOBAL innodb_file_per_table=1;
Warnings:
Warning	1287	'@@innodb_file_per_table' is deprecated and will be removed in a future release
CREATE TABLE ibd4(a INT UNIQUE)ENGINE=InnoDB;
CREATE TABLE ibd4f(a INT UNIQUE)ENGINE=InnoDB;
CREATE TABLE ibd5(a INT UNIQUE, b INT UNIQUE)ENGINE=InnoDB;
# Kill the server
DROP TABLE t,ibd4,ibd4f,ibd5;