diff options
author | unknown <bar@deer.(none)> | 2005-03-05 20:44:22 +0400 |
---|---|---|
committer | unknown <bar@deer.(none)> | 2005-03-05 20:44:22 +0400 |
commit | 37a292444858cbaeebe87a8b2c121897d53cd233 (patch) | |
tree | 86ab7f4f7b222d7f9690eb1536a6119276d044a1 /mysql-test/t/func_group.test | |
parent | 3113279c288a3ac75978f4d818ed24e7dc1d181a (diff) | |
download | mariadb-git-37a292444858cbaeebe87a8b2c121897d53cd233.tar.gz |
func_group.test, func_str.result, func_group.result:
after merge fixes
mysql-test/r/func_group.result:
after merge fixes
mysql-test/r/func_str.result:
after merge fixes
mysql-test/t/func_group.test:
after merge fixes
Diffstat (limited to 'mysql-test/t/func_group.test')
-rw-r--r-- | mysql-test/t/func_group.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/func_group.test b/mysql-test/t/func_group.test index dce4d8c142e..2d8bac701b1 100644 --- a/mysql-test/t/func_group.test +++ b/mysql-test/t/func_group.test @@ -536,6 +536,7 @@ drop table t1, t2, t3; CREATE TABLE t1 (id int(11),value1 float(10,2)); INSERT INTO t1 VALUES (1,0.00),(1,1.00), (1,2.00), (2,10.00), (2,11.00), (2,12.00), (2,13.00); select id, stddev_pop(value1), var_pop(value1), stddev_samp(value1), var_samp(value1) from t1 group by id; +DROP TABLE t1; # # Bug 8893: wrong result for min/max optimization with 2 indexes # |