Bug #90346 | InnoDB: Failing assertion: format != 0 | ||
---|---|---|---|
Submitted: | 9 Apr 2018 8:59 | Modified: | 10 Apr 2018 8:41 |
Reporter: | javen zhen | Email Updates: | |
Status: | Can't repeat | Impact on me: | |
Category: | MySQL Server: DDL | Severity: | S3 (Non-critical) |
Version: | 5.7.19 | OS: | MacOS |
Assigned to: | CPU Architecture: | Any |
[9 Apr 2018 8:59]
javen zhen
[9 Apr 2018 10:54]
MySQL Verification Team
Thank you for the bug report. It's your how to repeat the right way to repeat the issue? C:\tmp\mysql-5.7.19-winx64>bin\mysql -uroot -p test Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 6 Server version: 5.7.19 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> create tablespace ts1 add datafile 'ts1'; ERROR 3121 (HY000): Incorrect File Name 'ts1'. mysql> drop tablespace ts1; ERROR 1529 (HY000): Failed to drop TABLESPACE ts1 mysql>
[10 Apr 2018 2:03]
javen zhen
Sorry!I forgot to add the .ibd. The correct syntax is. create tablespace ts1 add datafile 'ts1.ibd'; drop tablespace ts1;
[10 Apr 2018 8:25]
MySQL Verification Team
Thank you for the feedback. Not repeatable with most recent source server: Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.23 Source distribution 2018-APR-04 Copyright (c) 2000, 2018, 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 5.7 > create tablespace ts1 add datafile 'ts1.ibd'; Query OK, 0 rows affected (0,14 sec) mysql 5.7 > drop tablespace ts1; ]Query OK, 0 rows affected (0,10 sec) mysql 5.7 > miguel@tikal:~/dbsd $ ./57c Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.23-debug Source distribution 2018-APR-04 Copyright (c) 2000, 2018, 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 5.7 > create tablespace ts1 add datafile 'ts1.ibd'; Query OK, 0 rows affected (0,14 sec) mysql 5.7 > drop tablespace ts1; Query OK, 0 rows affected (0,09 sec) mysql 5.7 >
[10 Apr 2018 8:31]
MySQL Verification Team
Also not repeatable on Windows with version reported: C:\tmp\mysql-5.7.19-winx64>bin\mysql -uroot Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.7.19 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> create tablespace ts1 add datafile 'ts1.ibd'; Query OK, 0 rows affected (0.03 sec) mysql> drop tablespace ts1; Query OK, 0 rows affected (0.02 sec) mysql>
[10 Apr 2018 8:41]
MySQL Verification Team
Not repeatable with current released version on MAC OS X. Thank you for the bug report and feedback. miguel:~ miguel$ mysql -uroot -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.21 MySQL Community Server (GPL) Copyright (c) 2000, 2018, 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> create tablespace ts1 add datafile 'ts1.ibd'; Query OK, 0 rows affected (0.01 sec) mysql> drop tablespace ts1; Query OK, 0 rows affected (0.00 sec) mysql> exit Bye miguel:~ miguel$ sw_vers ProductName: Mac OS X ProductVersion: 10.13.4 BuildVersion: 17E199 miguel:~ miguel$