Bug #84006 | Action upon setting ROW_FORMAT=FIXED for InnoDB table is wrongly documented | ||
---|---|---|---|
Submitted: | 29 Nov 2016 15:41 | Modified: | 1 Dec 2016 19:32 |
Reporter: | Elena Stepanova | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server: Documentation | Severity: | S3 (Non-critical) |
Version: | 5.7 | OS: | Any |
Assigned to: | CPU Architecture: | Any |
[29 Nov 2016 15:41]
Elena Stepanova
[29 Nov 2016 23:05]
MySQL Verification Team
Thank you for the bug report. c:\dbs>5.7\bin\mysql -uroot -p test Enter password: ********* Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4 Server version: 5.7.16-log MySQL Community Server (GPL) Copyright (c) 2000, 2016, 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> select @@innodb_default_row_format; +-----------------------------+ | @@innodb_default_row_format | +-----------------------------+ | dynamic | +-----------------------------+ 1 row in set (0.00 sec) mysql> select @@innodb_strict_mode; +----------------------+ | @@innodb_strict_mode | +----------------------+ | 1 | +----------------------+ 1 row in set (0.00 sec) mysql> set @@innodb_strict_mode = 0; Query OK, 0 rows affected (0.00 sec) mysql> use test Database changed mysql> create table t1 (i int) ROW_FORMAT=FIXED; Query OK, 0 rows affected, 1 warning (0.33 sec) mysql> show warnings; +---------+------+--------------------------------------+ | Level | Code | Message | +---------+------+--------------------------------------+ | Warning | 1478 | InnoDB: assuming ROW_FORMAT=DYNAMIC. | +---------+------+--------------------------------------+ 1 row in set (0.00 sec)
[1 Dec 2016 19:32]
Daniel Price
Posted by developer: The referenced documentation has been updated. The change should appear online soon. Thank you for the bug report.