Commit 5ccc2c0b authored by jimw@mysql.com's avatar jimw@mysql.com

After-merge cleanups to alter_table test

parent b3ba6649
......@@ -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;
......
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment