diff options
author | unknown <konstantin@mysql.com> | 2006-01-17 00:28:00 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2006-01-17 00:28:00 +0300 |
commit | 6e21daa7919c82c87d098cc4ad74d69ce21d778d (patch) | |
tree | 42fb3c5cfef97acfa0d070096605b618748c164f /mysql-test/r/alter_table.result | |
parent | b192949287bb54faf6b880778c4464b00a862686 (diff) | |
download | mariadb-git-6e21daa7919c82c87d098cc4ad74d69ce21d778d.tar.gz |
A test case for Bug#6073 "ALTER TABLE minor glitch" (can't repeat)
mysql-test/r/alter_table.result:
Test results fixed (Bug#6073)
mysql-test/t/alter_table.test:
A test case for Bug#6073
Diffstat (limited to 'mysql-test/r/alter_table.result')
-rw-r--r-- | mysql-test/r/alter_table.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/alter_table.result b/mysql-test/r/alter_table.result index f224a10c9bd..5c50b3cd79d 100644 --- a/mysql-test/r/alter_table.result +++ b/mysql-test/r/alter_table.result @@ -562,3 +562,7 @@ desc t1; Field Type Null Key Default Extra mycol int(10) NO 0 drop table t1; +create table t1 (t varchar(255) default null, key t (t(80))) +engine=myisam default charset=latin1; +alter table t1 change t t text; +drop table t1; |