Skip to content

Commit 9213ac8

Browse files
committed
Follow-up for a411d7f - change in formatting of SHOW CREATE TABLE
1 parent a1833ac commit 9213ac8

28 files changed

+393
-393
lines changed

mysql-test/suite/engines/funcs/r/ix_index_non_string.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ t1
427427
SHOW CREATE TABLE t1;
428428
Table Create Table
429429
t1 CREATE TABLE `t1` (
430-
`c1` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
430+
`c1` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
431431
KEY `i1` (`c1`)
432432
) ENGINE=ENGINE DEFAULT CHARSET=latin1
433433
DROP TABLE t1;

mysql-test/suite/engines/funcs/r/ix_unique_non_string.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ t1
427427
SHOW CREATE TABLE t1;
428428
Table Create Table
429429
t1 CREATE TABLE `t1` (
430-
`c1` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
430+
`c1` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
431431
UNIQUE KEY `i1` (`c1`)
432432
) ENGINE=ENGINE DEFAULT CHARSET=latin1
433433
DROP TABLE t1;

mysql-test/suite/engines/funcs/r/ta_2part_column_to_pk.result

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ t1
342342
SHOW CREATE TABLE t1;
343343
Table Create Table
344344
t1 CREATE TABLE `t1` (
345-
`c1` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
345+
`c1` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
346346
`c2` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
347347
) ENGINE=ENGINE DEFAULT CHARSET=latin1
348348
ALTER TABLE t1 ADD PRIMARY KEY (c1,c2);
@@ -352,7 +352,7 @@ t1
352352
SHOW CREATE TABLE t1;
353353
Table Create Table
354354
t1 CREATE TABLE `t1` (
355-
`c1` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
355+
`c1` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
356356
`c2` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
357357
PRIMARY KEY (`c1`,`c2`)
358358
) ENGINE=ENGINE DEFAULT CHARSET=latin1

0 commit comments

Comments
 (0)