Changes between Version 1 and Version 2 of Ticket #49344, comment 3
- Timestamp:
- 02/04/2020 02:21:34 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #49344, comment 3
v1 v2 31 31 This is due to [https://dev.mysql.com/doc/refman/8.0/en/numeric-type-attributes.html MySQL 8.0.17+ no longer supporting the display width attribute] for integer data types:[[BR]][[BR]] 32 32 > As of MySQL 8.0.17, the ZEROFILL attribute is deprecated for numeric data types, as is the display width attribute for integer data types. Support for ZEROFILL and display widths for integer data types will be removed in a future MySQL version. Consider using an alternative means of producing the effect of these attributes. 33 When creating the table, `bigint(20)` becomes just `bigint`. [attachment:49344. 2.diff] accounts for that as well.33 When creating the table, `bigint(20)` becomes just `bigint`. [attachment:49344.diff] accounts for that as well. 34 34 35 35 4. With the above issues resolved, there's still one failure on MySQL 8.0.17+: