summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mysql-test/t/func_op.test2
1 files changed, 2 insertions, 0 deletions
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);