Bug #88673 | Regression CREATE TBL from 5.7.17 to 20 (part #1: innodb_file_per_table = ON). | ||
---|---|---|---|
Submitted: | 28 Nov 2017 6:11 | Modified: | 28 Nov 2017 9:30 |
Reporter: | Jean-François Gagné | Email Updates: | |
Status: | Verified | Impact on me: | |
Category: | MySQL Server: InnoDB storage engine | Severity: | S3 (Non-critical) |
Version: | 5.7.20 | OS: | Any |
Assigned to: | CPU Architecture: | Any |
[28 Nov 2017 6:11]
Jean-François Gagné
[28 Nov 2017 6:18]
Jean-François Gagné
Probably related to Bug#88674. But in Bug#88674, the CREATE TABLE fails with innodb_file_per_table = ON, succeeds with innodb_file_per_table = OFF in 5.7.17 but fails in 5.7.20.
[28 Nov 2017 9:20]
MySQL Verification Team
Hello Jean, Thank you for the report and feedback. Thanks, Umesh
[28 Nov 2017 9:30]
Jean-François Gagné
If this is a regression in the fix for Bug#86934, MySQL 5.5.58 and 5.6.38 are probably also affected, but I do not have the resources to test this now.
[28 Nov 2017 9:46]
MySQL Verification Team
-- 5.6.38 seems not affected [umshastr@hod03]/export/umesh/server/binaries/GABuilds/mysql-5.6.38: bin/mysql -uroot -S /tmp/mysql_ushastry.sock Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.6.38 MySQL Community Server (GPL) Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> show variables like 'innodb_file%'; +--------------------------+----------+ | Variable_name | Value | +--------------------------+----------+ | innodb_file_format | Antelope | | innodb_file_format_check | ON | | innodb_file_format_max | Antelope | | innodb_file_per_table | ON | +--------------------------+----------+ 4 rows in set (0.00 sec) mysql> CREATE DATABASE test_jfg2; Query OK, 1 row affected (0.00 sec) mysql> CREATE TABLE test_jfg2.test_jfg_table_name_with_64_chars_1234567890éééééééééééééééééééé ( -> id int(10) unsigned NOT NULL, -> id2 int(10) unsigned NOT NULL, -> PRIMARY KEY (id, id2) -> ) ENGINE=InnoDB PARTITION BY RANGE (id) SUBPARTITION BY HASH (id2) SUBPARTITIONS 2 ( -> PARTITION test_jfg_partition_name_with_xx_chars_çççççç123456789 VALUES LESS THAN (1000), -> PARTITION pmax VALUES LESS THAN MAXVALUE); Query OK, 0 rows affected (0.01 sec) -- with barracuda mysql> show variables like 'innodb_file%'; +--------------------------+-----------+ | Variable_name | Value | +--------------------------+-----------+ | innodb_file_format | Barracuda | | innodb_file_format_check | ON | | innodb_file_format_max | Antelope | | innodb_file_per_table | ON | +--------------------------+-----------+ 4 rows in set (0.00 sec) mysql> CREATE DATABASE test_jfg2; Query OK, 1 row affected (0.00 sec) mysql> CREATE TABLE test_jfg2.test_jfg_table_name_with_64_chars_1234567890éééééééééééééééééééé ( -> id int(10) unsigned NOT NULL, -> id2 int(10) unsigned NOT NULL, -> PRIMARY KEY (id, id2) -> ) ENGINE=InnoDB PARTITION BY RANGE (id) SUBPARTITION BY HASH (id2) SUBPARTITIONS 2 ( -> PARTITION test_jfg_partition_name_with_xx_chars_çççççç123456789 VALUES LESS THAN (1000), -> PARTITION pmax VALUES LESS THAN MAXVALUE); Query OK, 0 rows affected (0.01 sec)