summaryrefslogtreecommitdiff
path: root/mysql-test/t/alter_table.test
diff options
context:
space:
mode:
authorjimw@mysql.com <>2005-11-30 12:17:01 -0800
committerjimw@mysql.com <>2005-11-30 12:17:01 -0800
commit0597c510c89b9b4aedac95d12bbccd1871ffd2d2 (patch)
tree0842357ad78347a6ab54d08343e906c55f7b72b0 /mysql-test/t/alter_table.test
parent5ad6b9b4f315da89a114b5d8398b8b98507b608e (diff)
parent70c30c8d9323d10b5b60ea7819668c5d42a9118c (diff)
downloadmariadb-git-0597c510c89b9b4aedac95d12bbccd1871ffd2d2.tar.gz
Merge mysql.com:/home/jimw/my/mysql-5.0-clean
into mysql.com:/home/jimw/my/mysql-5.1-clean
Diffstat (limited to 'mysql-test/t/alter_table.test')
-rw-r--r--mysql-test/t/alter_table.test14
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));