List:Commits« Previous MessageNext Message »
From:kgeorge Date:November 30 2006 4:48pm
Subject:bk commit into 5.0 tree (gkodinov:1.2324)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of kgeorge. When kgeorge 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-11-30 18:47:59+02:00, gkodinov@stripped +4 -0
  func_group.test, func_group.result, func_gconcat.result, func_gconcat.test:
    merge fix : removed undeterministic warnings

  mysql-test/r/func_gconcat.result@stripped, 2006-11-30 18:46:50+02:00, gkodinov@stripped +0 -19
    merge fix : removed undeterministic warnings

  mysql-test/r/func_group.result@stripped, 2006-11-30 18:47:22+02:00, gkodinov@stripped +0 -7
    merge fix : removed undeterministic warnings

  mysql-test/t/func_gconcat.test@stripped, 2006-11-30 18:47:30+02:00, gkodinov@stripped +1 -1
    merge fix : removed undeterministic warnings

  mysql-test/t/func_group.test@stripped, 2006-11-30 18:47:33+02:00, gkodinov@stripped +2 -0
    merge fix : removed undeterministic warnings

# 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:	gkodinov
# Host:	macbook.gmz
# Root:	/Users/kgeorge/mysql/work/B11927-5.0-opt

--- 1.55/mysql-test/r/func_group.result	2006-11-28 15:43:58 +02:00
+++ 1.56/mysql-test/r/func_group.result	2006-11-30 18:47:22 +02:00
@@ -62,13 +62,6 @@ NULL	NULL
 1	7
 2	20.25
 3	45.483163247594
-Warnings:
-Warning	1292	Truncated incorrect DOUBLE value: 'a         '
-Warning	1292	Truncated incorrect DOUBLE value: 'a         '
-Warning	1292	Truncated incorrect DOUBLE value: 'b         '
-Warning	1292	Truncated incorrect DOUBLE value: 'c         '
-Warning	1292	Truncated incorrect DOUBLE value: 'C         '
-Warning	1292	Truncated incorrect DOUBLE value: 'E         '
 create table t2 (grp int, a bigint unsigned, c char(10));
 insert into t2 select grp,max(a)+max(grp),max(c) from t1 group by grp;
 replace into t2 select grp, a, c from t1 limit 2,1;

--- 1.50/mysql-test/t/func_group.test	2006-10-31 11:01:20 +02:00
+++ 1.51/mysql-test/t/func_group.test	2006-11-30 18:47:33 +02:00
@@ -29,7 +29,9 @@ select count(distinct a),count(distinct 
 
 select sum(all a),count(all a),avg(all a),std(all a),variance(all a),bit_or(all a),bit_and(all a),min(all a),max(all a),min(all c),max(all c) from t1;
 select grp, sum(a),count(a),avg(a),std(a),variance(a),bit_or(a),bit_and(a),min(a),max(a),min(c),max(c) from t1 group by grp;
+--disable_warnings
 select grp, sum(a)+count(a)+avg(a)+std(a)+variance(a)+bit_or(a)+bit_and(a)+min(a)+max(a)+min(c)+max(c) as sum from t1 group by grp;
+--enable_warnings
 
 create table t2 (grp int, a bigint unsigned, c char(10));
 insert into t2 select grp,max(a)+max(grp),max(c) from t1 group by grp;

--- 1.65/mysql-test/r/func_gconcat.result	2006-11-30 12:57:39 +02:00
+++ 1.66/mysql-test/r/func_gconcat.result	2006-11-30 18:46:50 +02:00
@@ -69,25 +69,6 @@ grp	group_concat(a order by d+c-ascii(c)
 1	1
 2	3,2
 3	7,8,4,6,9,5
-Warnings:
-Warning	1292	Truncated incorrect DOUBLE value: 'a         '
-Warning	1292	Truncated incorrect DOUBLE value: 'a         '
-Warning	1292	Truncated incorrect DOUBLE value: 'a         '
-Warning	1292	Truncated incorrect DOUBLE value: 'b         '
-Warning	1292	Truncated incorrect DOUBLE value: 'b         '
-Warning	1292	Truncated incorrect DOUBLE value: 'c         '
-Warning	1292	Truncated incorrect DOUBLE value: 'a         '
-Warning	1292	Truncated incorrect DOUBLE value: 'E         '
-Warning	1292	Truncated incorrect DOUBLE value: 'b         '
-Warning	1292	Truncated incorrect DOUBLE value: 'C         '
-Warning	1292	Truncated incorrect DOUBLE value: 'b         '
-Warning	1292	Truncated incorrect DOUBLE value: 'D         '
-Warning	1292	Truncated incorrect DOUBLE value: 'd         '
-Warning	1292	Truncated incorrect DOUBLE value: 'd         '
-Warning	1292	Truncated incorrect DOUBLE value: 'd         '
-Warning	1292	Truncated incorrect DOUBLE value: 'd         '
-Warning	1292	Truncated incorrect DOUBLE value: 'c         '
-Warning	1292	Truncated incorrect DOUBLE value: 'D         '
 select grp,group_concat(c order by 1) from t1 group by grp;
 grp	group_concat(c order by 1)
 1	a

--- 1.52/mysql-test/t/func_gconcat.test	2006-11-30 12:57:12 +02:00
+++ 1.53/mysql-test/t/func_gconcat.test	2006-11-30 18:47:30 +02:00
@@ -31,8 +31,8 @@ select grp,group_concat(d order by a) fr
 select grp,group_concat(d order by a desc) from t1 group by grp;
 --disable_warnings
 select grp,group_concat(a order by a,d+c-ascii(c)-a) from t1 group by grp;
---enable_warnings
 select grp,group_concat(a order by d+c-ascii(c),a) from t1 group by grp;
+--enable_warnings
 select grp,group_concat(c order by 1) from t1 group by grp;
 select grp,group_concat(distinct c order by c) from t1 group by grp;
 select grp,group_concat(distinct c order by c desc) from t1 group by grp;
Thread
bk commit into 5.0 tree (gkodinov:1.2324)kgeorge30 Nov