summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_group.test
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2005-11-16 15:17:08 +0100
committerunknown <serg@serg.mylan>2005-11-16 15:17:08 +0100
commitdcf5d348cc74d9ad8963903e9b614c950a7e109a (patch)
treead48264532ca5475f05db03beece0f72611e15dd /mysql-test/t/func_group.test
parent8a661e77ea3759eb0bdc0fd1a0caecc708593732 (diff)
downloadmariadb-git-dcf5d348cc74d9ad8963903e9b614c950a7e109a.tar.gz
bug#14433 - archive uses wrong ref_length
mysql-test/t/func_group.test: re-enable the test
Diffstat (limited to 'mysql-test/t/func_group.test')
-rw-r--r--mysql-test/t/func_group.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/func_group.test b/mysql-test/t/func_group.test
index 9237205eeb5..c667f90940c 100644
--- a/mysql-test/t/func_group.test
+++ b/mysql-test/t/func_group.test
@@ -2,8 +2,6 @@
# simple test of all group functions
#
---source include/have_innodb.inc
-
--disable_warnings
drop table if exists t1,t2;
--enable_warnings
@@ -545,10 +543,12 @@ DROP TABLE t1;
# Bug #12882 min/max inconsistent on empty table
#
+--disable_warnings
create table t1m (a int) engine=myisam;
create table t1i (a int) engine=innodb;
create table t2m (a int) engine=myisam;
create table t2i (a int) engine=innodb;
+--enable_warnings
insert into t2m values (5);
insert into t2i values (5);