Below is the list of changes that have just been committed into a local
5.0 repository of kostja. When kostja does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.2027 06/01/17 00:28:00 konstantin@stripped +2 -0
A test case for Bug#6073 "ALTER TABLE minor glitch" (can't repeat)
mysql-test/t/alter_table.test
1.44 06/01/17 00:27:54 konstantin@stripped +10 -0
A test case for Bug#6073
mysql-test/r/alter_table.result
1.56 06/01/17 00:27:54 konstantin@stripped +4 -0
Test results fixed (Bug#6073)
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: konstantin
# Host: dragonfly.local
# Root: /opt/local/work/mysql-5.0-root
--- 1.55/mysql-test/r/alter_table.result 2005-11-24 19:23:24 +03:00
+++ 1.56/mysql-test/r/alter_table.result 2006-01-17 00:27:54 +03:00
@@ -562,3 +562,7 @@
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;
--- 1.43/mysql-test/t/alter_table.test 2005-12-05 18:42:25 +03:00
+++ 1.44/mysql-test/t/alter_table.test 2006-01-17 00:27:54 +03:00
@@ -412,3 +412,13 @@
alter table t1 alter column mycol set default 0;
desc t1;
drop table t1;
+
+#
+# Bug#6073 "ALTER table minor glich": ALTER TABLE complains that an index
+# without # prefix is not allowed for TEXT columns, while index
+# is defined with prefix.
+#
+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;
| Thread |
|---|
| • bk commit into 5.0 tree (konstantin:1.2027) BUG#6073 | konstantin | 16 Jan |