Navigation Menu

Skip to content

Commit

Permalink
mysql8 test: remove a needless SHOW CREATE TABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Aug 10, 2018
1 parent 0dd609c commit 2f94171
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions mysql-test/mroonga/storage/update/r/int.result
@@ -1,11 +1,5 @@
drop table if exists t1, t2, t3;
create table t1 (c1 int, c2 int);
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c1` int(11) DEFAULT NULL,
`c2` int(11) DEFAULT NULL
) ENGINE=Mroonga DEFAULT CHARSET=latin1
insert into t1 values (1, 100);
insert into t1 values (2, 101);
insert into t1 values (3, 102);
Expand Down
1 change: 0 additions & 1 deletion mysql-test/mroonga/storage/update/t/int.test
Expand Up @@ -21,7 +21,6 @@ drop table if exists t1, t2, t3;
--enable_warnings

create table t1 (c1 int, c2 int);
show create table t1;
insert into t1 values (1, 100);
insert into t1 values (2, 101);
insert into t1 values (3, 102);
Expand Down

0 comments on commit 2f94171

Please sign in to comment.