mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
absurd (and syntaxically incorrect) column definition corrected
This commit is contained in:
parent
c1ed639cb6
commit
a4dbcfd681
2 changed files with 2 additions and 2 deletions
|
@ -1289,7 +1289,7 @@ a b
|
||||||
111 100
|
111 100
|
||||||
drop table t1;
|
drop table t1;
|
||||||
CREATE TABLE t1 (col1 int(1))TYPE=InnoDB;
|
CREATE TABLE t1 (col1 int(1))TYPE=InnoDB;
|
||||||
CREATE TABLE t2 (col1 int(1),stamp TIMESTAMP(+0),INDEX stamp_idx
|
CREATE TABLE t2 (col1 int(1),stamp TIMESTAMP,INDEX stamp_idx
|
||||||
(stamp))TYPE=InnoDB;
|
(stamp))TYPE=InnoDB;
|
||||||
insert into t1 values (1),(2),(3);
|
insert into t1 values (1),(2),(3);
|
||||||
insert into t2 values (1, 20020204130000),(2, 20020204130000),(4,20020204310000 );
|
insert into t2 values (1, 20020204130000),(2, 20020204130000),(4,20020204310000 );
|
||||||
|
|
|
@ -868,7 +868,7 @@ drop table t1;
|
||||||
|
|
||||||
|
|
||||||
CREATE TABLE t1 (col1 int(1))TYPE=InnoDB;
|
CREATE TABLE t1 (col1 int(1))TYPE=InnoDB;
|
||||||
CREATE TABLE t2 (col1 int(1),stamp TIMESTAMP(+0),INDEX stamp_idx
|
CREATE TABLE t2 (col1 int(1),stamp TIMESTAMP,INDEX stamp_idx
|
||||||
(stamp))TYPE=InnoDB;
|
(stamp))TYPE=InnoDB;
|
||||||
insert into t1 values (1),(2),(3);
|
insert into t1 values (1),(2),(3);
|
||||||
insert into t2 values (1, 20020204130000),(2, 20020204130000),(4,20020204310000 );
|
insert into t2 values (1, 20020204130000),(2, 20020204130000),(4,20020204310000 );
|
||||||
|
|
Loading…
Reference in a new issue