diff options
author | holyfoot@hf-ibm.(none) <> | 2005-05-06 01:01:39 +0500 |
---|---|---|
committer | holyfoot@hf-ibm.(none) <> | 2005-05-06 01:01:39 +0500 |
commit | 8f3647005c253f30825d4e2e560d86783b611f8a (patch) | |
tree | 2a5b7c2ccfaeb6ea061bc33fe28c66d4988ff336 /mysql-test/t/func_group.test | |
parent | 196a87cbd68966012d0b71c7f92846719991b86e (diff) | |
download | mariadb-git-8f3647005c253f30825d4e2e560d86783b611f8a.tar.gz |
Tests and results fixed with last precision/decimal related modifications
Diffstat (limited to 'mysql-test/t/func_group.test')
-rw-r--r-- | mysql-test/t/func_group.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/t/func_group.test b/mysql-test/t/func_group.test index 9b6f91067d4..459a40cfe87 100644 --- a/mysql-test/t/func_group.test +++ b/mysql-test/t/func_group.test @@ -6,6 +6,9 @@ drop table if exists t1,t2; --enable_warnings +set @sav_dpi= @@div_precision_increment; +set div_precision_increment= 5; +show variables like 'div_precision_increment'; create table t1 (grp int, a bigint unsigned, c char(10) not null); insert into t1 values (1,1,"a"); insert into t1 values (2,2,"b"); @@ -623,4 +626,5 @@ SELECT b/c as v, SUM(a) FROM t1 GROUP BY v; SELECT SUM(a) FROM t1 GROUP BY b/c; DROP TABLE t1; +set div_precision_increment= @sav_dpi; |