summaryrefslogtreecommitdiff
path: root/mysql-test/t/constraints.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/constraints.test')
-rw-r--r--mysql-test/t/constraints.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/constraints.test b/mysql-test/t/constraints.test
index 8682cdc42a2..cc796e0abd2 100644
--- a/mysql-test/t/constraints.test
+++ b/mysql-test/t/constraints.test
@@ -2,7 +2,9 @@
# Testing of constraints
# Currently MySQL only ignores the syntax.
#
+--disable_warnings
drop table if exists t1;
+--enable_warnings
create table t1 (a int check (a>0));
insert into t1 values (1);