Bug #79469 | Getting inappropriate error while transport table from MySQL 5.6 to MySQL 5.7 | ||
---|---|---|---|
Submitted: | 1 Dec 2015 5:43 | Modified: | 1 Dec 2015 11:25 |
Reporter: | Nilnandan Joshi | Email Updates: | |
Status: | Verified | Impact on me: | |
Category: | MySQL Server: InnoDB storage engine | Severity: | S2 (Serious) |
Version: | 5.7, 5.7.9 | OS: | Any |
Assigned to: | CPU Architecture: | Any | |
Tags: | ALTER TABLE, IMPORT TABLESPACE, MySQL 5.7 |
[1 Dec 2015 5:43]
Nilnandan Joshi
[1 Dec 2015 11:25]
MySQL Verification Team
Hello Nilnandan, Thank you for the report. Imho this is reproducible just even with both source/target with 5.7.9. Per manual, when you have diff ROW_FORMAT on source and target instances then this could result in a schema mismatch error. But, I'm verifying it for the clear/meaningful error message. Thanks, Umesh
[1 Dec 2015 11:26]
MySQL Verification Team
// Source Server - create table with ROW_FORMAT=COMPACT [umshastr@hod03]/export/umesh/server/binaries/mysql-5.7.9: bin/mysql -uroot -S /tmp/mysql_ushastry.sock Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.9 MySQL Community Server (GPL) Copyright (c) 2000, 2015, 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 database test; Query OK, 1 row affected (0.00 sec) mysql> use test Database changed mysql> show variables like 'innodb_default_row_format'; +---------------------------+---------+ | Variable_name | Value | +---------------------------+---------+ | innodb_default_row_format | dynamic | +---------------------------+---------+ 1 row in set (0.00 sec) mysql> CREATE TABLE t(c1 INT) engine=InnoDB row_format=compact; Query OK, 0 rows affected (0.01 sec) mysql> show create table t\G *************************** 1. row *************************** Table: t Create Table: CREATE TABLE `t` ( `c1` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT 1 row in set (0.01 sec) mysql> FLUSH TABLES t FOR EXPORT; Query OK, 0 rows affected (0.00 sec) mysql> \! ls -l /export/umesh/server/binaries/mysql-5.7.9/79469/test total 116 -rw-r----- 1 umshastr common 65 Dec 1 12:06 db.opt -rw-r----- 1 umshastr common 355 Dec 1 12:08 t.cfg -rw-r----- 1 umshastr common 8556 Dec 1 12:08 t.frm -rw-r----- 1 umshastr common 98304 Dec 1 12:08 t.ibd mysql> \! cp /export/umesh/server/binaries/mysql-5.7.9/79469/test/t.{ibd,cfg} /tmp/ mysql> \! ls -l /tmp/t.{ibd,cfg} -rw-r----- 1 umshastr common 355 Dec 1 12:09 /tmp/t.cfg -rw-r----- 1 umshastr common 98304 Dec 1 12:09 /tmp/t.ibd mysql> -- target server -- create table and leave ROW_FORMAT for default [umshastr@hod03]/export/umesh/server/binaries/mysql-5.7.9: bin/mysql -uroot -S /tmp/mysql_ushastry.sock Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.9 MySQL Community Server (GPL) Copyright (c) 2000, 2015, 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 database test; Query OK, 1 row affected (0.00 sec) mysql> use test; Database changed mysql> CREATE TABLE t(c1 INT) engine=InnoDB; Query OK, 0 rows affected (0.00 sec) mysql> ALTER TABLE t DISCARD TABLESPACE; Query OK, 0 rows affected (0.01 sec) mysql> \! cp /tmp/t.{ibd,cfg} /export/umesh/server/binaries/mysql-5.7.9/79469/test/ mysql> mysql> \! ls -l /export/umesh/server/binaries/mysql-5.7.9/79469/test total 116 -rw-r----- 1 umshastr common 65 Dec 1 12:11 db.opt -rw-r----- 1 umshastr common 355 Dec 1 12:13 t.cfg -rw-r----- 1 umshastr common 8556 Dec 1 12:11 t.frm -rw-r----- 1 umshastr common 98304 Dec 1 12:13 t.ibd mysql> mysql> ALTER TABLE t IMPORT TABLESPACE; ERROR 1808 (HY000): Schema mismatch (Table flags don't match, server table has 0x4 and the meta-data file has 0x1) mysql>
[8 Jan 2016 11:49]
MySQL Verification Team
Bug #79888 marked as duplicate of this
[20 Jan 2016 7:55]
Daniƫl van Eeden
Related: Bug #80057 View for InnoDB Flags
[27 Jun 2017 5:15]
MySQL Verification Team
Bug#86824 marked as duplicate of this one