bk commit into 4.1 tree (ramil:1.2307) -
06-01-2005
, 03:46 AM
Below is the list of changes that have just been committed into a local
4.1 repository of ram. When ram 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/in...urce-tree.html
ChangeSet
1.2307 05/06/01 13:46:05 ramil (AT) mysql (DOT) com +2 -0
In order not to get different results on defferent platforms,
queries not used 'order by' clause removed.
mysql-test/t/func_gconcat.test
1.27 05/06/01 13:45:58 ramil (AT) mysql (DOT) com +0 -2
Queries not used 'order by' clause removed.
mysql-test/r/func_gconcat.result
1.36 05/06/01 13:45:58 ramil (AT) mysql (DOT) com +0 -10
Queries not used 'order by' clause emoved.
# 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: ramil
# Host: gw.mysql.r18.ru
# Root: /usr/home/ram/work/mysql-4.1
--- 1.35/mysql-test/r/func_gconcat.result 2005-05-31 10:54:28 +05:00
+++ 1.36/mysql-test/r/func_gconcat.result 2005-06-01 13:45:58 +05:00
@@ -471,16 +471,6 @@
drop table r2;
create table t1 (d int, a int, b int, c int);
insert into t1(a,b) values (1,3), (1,4), (1,2), (2,7), (1,1), (1,2), (2,3), (2,3);
-select a, group_concat(b) from t1 group by a with rollup;
-a group_concat(b)
-1 3,4,2,1,2
-2 7,3,3
-NULL 3,4,2,1,2,7,3,3
-select a, group_concat(distinct b) from t1 group by a with rollup;
-a group_concat(distinct b)
-1 3,4,2,1
-2 7,3
-NULL 3,4,2,1,7
select a, group_concat(b order by b) from t1 group by a with rollup;
a group_concat(b order by b)
1 1,2,2,3,4
--- 1.26/mysql-test/t/func_gconcat.test 2005-05-31 10:54:28 +05:00
+++ 1.27/mysql-test/t/func_gconcat.test 2005-06-01 13:45:58 +05:00
@@ -299,8 +299,6 @@
create table t1 (d int, a int, b int, c int);
insert into t1(a,b) values (1,3), (1,4), (1,2), (2,7), (1,1), (1,2), (2,3), (2,3);
-select a, group_concat(b) from t1 group by a with rollup;
-select a, group_concat(distinct b) from t1 group by a with rollup;
select a, group_concat(b order by b) from t1 group by a with rollup;
select a, group_concat(distinct b order by b) from t1 group by a with rollup;
drop table t1;
--
MySQL Internals Mailing List
For list archives: http://lists.mysql.com/internals
To unsubscribe: http://lists.mysql.com/internals?uns...ie.nctu.edu.tw |