Below is the list of changes that have just been committed into a local
5.0 repository of dli. When dli 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@stripped, 2006-09-01 17:41:41+08:00, dli@stripped +1 -0
Bug #21345, Error in cluster logfile rotation.
merge the modification for ctype_utf8.result in bug#20709 fix for mysql 4.1. to let the pushbuild succeed.
mysql-test/r/ctype_utf8.result@stripped, 2006-09-01 17:41:38+08:00, dli@stripped +16 -0
Bug#21345, Error in cluster logfile rotation.
merge the modification for ctype_utf8.result in bug#20709 fix for mysql 4.1. to let the pushbuild succeed.
# 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: dli
# Host: dev3-76.dev.cn.tlan
# Root: /home/dli/mysql/mysql-5.0/mysql-5.0-bug-21345
--- 1.95/mysql-test/r/ctype_utf8.result 2006-09-01 17:41:46 +08:00
+++ 1.96/mysql-test/r/ctype_utf8.result 2006-09-01 17:41:46 +08:00
@@ -1293,6 +1293,22 @@
DROP TABLE t1;
+create table t1(a char(200) collate utf8_unicode_ci NOT NULL default '')
+default charset=utf8 collate=utf8_unicode_ci;
+insert into t1 values (unhex('65')), (unhex('C3A9')), (unhex('65'));
+explain select distinct a from t1;
+id select_type table type possible_keys key key_len ref rows Extra
+1 SIMPLE t1 ALL NULL NULL NULL NULL 3 Using temporary
+select distinct a from t1;
+a
+e
+explain select a from t1 group by a;
+id select_type table type possible_keys key key_len ref rows Extra
+1 SIMPLE t1 ALL NULL NULL NULL NULL 3 Using temporary; Using filesort
+select a from t1 group by a;
+a
+e
+drop table t1;
CREATE TABLE t1(id varchar(20) NOT NULL) DEFAULT CHARSET=utf8;
INSERT INTO t1 VALUES ('xxx'), ('aa'), ('yyy'), ('aa');
SELECT id FROM t1;
| Thread |
|---|
| • bk commit into 5.0 tree (dli:1.2254) BUG#20709 | David Li | 1 Sep |