mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-27 07:54:58 +00:00
Fixed all tests for MySQL 5.7
Most of the failing tests were failing due to changes in MySQL 5.7 default sql_mode and because of invalid timestamps ('0000-00-00')
This commit is contained in:
@@ -3,7 +3,7 @@ CREATE TABLE `messages` (
|
||||
`MID` int(20) NOT NULL default '0',
|
||||
`TID` bigint(20) NOT NULL default '0',
|
||||
`AUTHOR` varchar(32) NOT NULL default '',
|
||||
`DATE` datetime NOT NULL default '0000-00-00 00:00:00',
|
||||
`DATE` datetime NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
`INTERNAL` char(1) NOT NULL default '0',
|
||||
`ISOPER` char(1) NOT NULL default '0',
|
||||
`HEADERS` text NOT NULL,
|
||||
|
Reference in New Issue
Block a user