diff options
author | ingo@mysql.com <> | 2005-09-29 14:07:32 +0200 |
---|---|---|
committer | ingo@mysql.com <> | 2005-09-29 14:07:32 +0200 |
commit | 0af6e68acf68c457cc767736551d4592851d1f73 (patch) | |
tree | 43f77b316fa66122320faf96cb092c8bc4c6ea1e /mysql-test/r/merge.result | |
parent | 36edcbf4fa63595db2871863c0ad29a70e2639b1 (diff) | |
parent | 5c93e799d88e325f5228eb2574f263bfa827b5a5 (diff) | |
download | mariadb-git-0af6e68acf68c457cc767736551d4592851d1f73.tar.gz |
Merge mysql.com:/home/mydev/mysql-4.1-4100
into mysql.com:/home/mydev/mysql-5.0-5000
Diffstat (limited to 'mysql-test/r/merge.result')
-rw-r--r-- | mysql-test/r/merge.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/merge.result b/mysql-test/r/merge.result index f209ff8bd31..e028e58acf5 100644 --- a/mysql-test/r/merge.result +++ b/mysql-test/r/merge.result @@ -669,15 +669,15 @@ b varchar(10), index (a,b) ) engine=myisam; insert into t2 values ( null, ''); -insert into t2 values ( 9999999999.9999, ''); +insert into t2 values ( 9999999999.999, ''); insert into t3 select * from t2; select min(a), max(a) from t1; min(a) max(a) -9999999999.9999 9999999999.9999 +9999999999.9990 9999999999.9990 flush tables; select min(a), max(a) from t1; min(a) max(a) -9999999999.9999 9999999999.9999 +9999999999.9990 9999999999.9990 drop table t1, t2, t3; create table t1 (a int,b int,c int, index (a,b,c)); create table t2 (a int,b int,c int, index (a,b,c)); |