diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-07-25 22:15:05 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-08-27 16:59:13 +0200 |
commit | eac7e57529756a2a7f6c269775323323f7b2c706 (patch) | |
tree | 79d8d68360d6513bcca531931e47a6fd546d7736 /mysql-test/t/features.test | |
parent | 7450cb7f69db801c48f806748e666c393b8d6b81 (diff) | |
download | mariadb-git-eac7e57529756a2a7f6c269775323323f7b2c706.tar.gz |
Feature_check_constraint status variable
Diffstat (limited to 'mysql-test/t/features.test')
-rw-r--r-- | mysql-test/t/features.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/features.test b/mysql-test/t/features.test index 225ab40b361..63e923a772b 100644 --- a/mysql-test/t/features.test +++ b/mysql-test/t/features.test @@ -130,3 +130,11 @@ insert into t1 values(2); drop table t1; show status like "feature_delay_key_write"; + +# +# Feature CHECK CONSTRAINT +# +create table t1 (a int check (a > 5)); +create table t2 (b int, constraint foo check (b < 10)); +drop table t1, t2; +show status like "feature_check_constraint"; |