diff options
author | unknown <jimw@mysql.com> | 2005-11-30 12:17:01 -0800 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-11-30 12:17:01 -0800 |
commit | 6653213a71b2df0540c97dddcc3d7ee9e710be90 (patch) | |
tree | 0842357ad78347a6ab54d08343e906c55f7b72b0 /mysql-test/t/alter_table.test | |
parent | fc289724bba5f689dbe46666a70866ee0d297777 (diff) | |
parent | 03e057cd9ec2feb08f00578a9f22801f8656d92d (diff) | |
download | mariadb-git-6653213a71b2df0540c97dddcc3d7ee9e710be90.tar.gz |
Merge mysql.com:/home/jimw/my/mysql-5.0-clean
into mysql.com:/home/jimw/my/mysql-5.1-clean
VC++Files/sql/mysqld.dsp:
Auto merged
sql/item.cc:
Auto merged
sql/sql_table.cc:
Auto merged
mysql-test/r/alter_table.result:
Resolve conflict
mysql-test/t/alter_table.test:
Resolve conflict
Diffstat (limited to 'mysql-test/t/alter_table.test')
-rw-r--r-- | mysql-test/t/alter_table.test | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/mysql-test/t/alter_table.test b/mysql-test/t/alter_table.test index 6a9e482a12b..e31cdc8a869 100644 --- a/mysql-test/t/alter_table.test +++ b/mysql-test/t/alter_table.test @@ -405,9 +405,17 @@ drop table t1; # End of 4.1 tests # -# Some additional tests for new, faster alter table. -# Note that most of the whole alter table code is being -# tested all around the test suite already. +# Bug #14693 (ALTER SET DEFAULT doesn't work) +# + +create table t1 (mycol int(10) not null); +alter table t1 alter column mycol set default 0; +desc t1; +drop table; + +# +# Some additional tests for new, faster alter table. Note that most of the +# whole alter table code is being tested all around the test suite already. # create table t1 (v varchar(32)); |