You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mysql-test/include/mtr_warnings.sql
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -165,6 +165,9 @@ INSERT INTO global_suppressions VALUES
165
165
166
166
("The slave I.O thread stops because a fatal error is encountered when it try to get the value of SERVER_ID variable from master."),
167
167
168
+
/*It will print a warning if server is run without --explicit_defaults_for_timestamp.*/
169
+
("TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details)*"),
170
+
168
171
/* Added 2009-08-XX after fixing Bug #42408 */
169
172
170
173
("Although a path was specified for the .* option, log tables are used"),
Copy file name to clipboardExpand all lines: mysql-test/r/create.result
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -494,7 +494,7 @@ a b c d e f g h dd
494
494
1 -7 7 2000-01-01 b 2000-01-01 00:00:00 05:04:03 yet another binary data 02:00:00
495
495
2 -2 2 1825-12-14 a 2003-01-01 03:02:01 04:03:02 binary data 02:00:00
496
496
drop table t1, t2;
497
-
create table t1 (a tinyint, b smallint, c mediumint, d int, e bigint, f float(3,2), g double(4,3), h decimal(5,4), i year, j date, k timestamp, l datetime, m enum('a','b'), n set('a','b'), o char(10));
497
+
create table t1 (a tinyint, b smallint, c mediumint, d int, e bigint, f float(3,2), g double(4,3), h decimal(5,4), i year, j date, k timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, l datetime, m enum('a','b'), n set('a','b'), o char(10));
0 commit comments