From d7caa2a02aedec5a294bbb0c64aed048f23dc6be Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 11 Apr 2006 15:26:18 +0500 Subject: [PATCH] after merge fix. --- mysql-test/t/func_op.test | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mysql-test/t/func_op.test b/mysql-test/t/func_op.test index 6521349a558..0a4f5034f4c 100644 --- a/mysql-test/t/func_op.test +++ b/mysql-test/t/func_op.test @@ -21,7 +21,9 @@ select -1 >> 1, -1 << 1; # Bug 13044: wrong bit_count() results # +--disable_warnings drop table if exists t1,t2; +--enable_warnings create table t1(a int); create table t2(a int, b int); insert into t1 values (1), (2), (3);