diff options
-rw-r--r-- | mysql-test/r/alter_table.result | 1 | ||||
-rw-r--r-- | mysql-test/t/alter_table.test | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/r/alter_table.result b/mysql-test/r/alter_table.result index 85d3bd0b2ad..5b40b250786 100644 --- a/mysql-test/r/alter_table.result +++ b/mysql-test/r/alter_table.result @@ -555,6 +555,7 @@ alter table test.t1 rename t1; ERROR 3D000: No database selected alter table test.t1 rename test.t1; use test; +drop table t1; create table t1 (mycol int(10) not null); alter table t1 alter column mycol set default 0; desc t1; diff --git a/mysql-test/t/alter_table.test b/mysql-test/t/alter_table.test index e31cdc8a869..90109c17b62 100644 --- a/mysql-test/t/alter_table.test +++ b/mysql-test/t/alter_table.test @@ -411,7 +411,7 @@ drop table t1; create table t1 (mycol int(10) not null); alter table t1 alter column mycol set default 0; desc t1; -drop table; +drop table t1; # # Some additional tests for new, faster alter table. Note that most of the |