diff options
Diffstat (limited to 'mysql-test/t/features.test')
-rw-r--r-- | mysql-test/t/features.test | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mysql-test/t/features.test b/mysql-test/t/features.test index cdfc9413da5..f2ac5a5bba6 100644 --- a/mysql-test/t/features.test +++ b/mysql-test/t/features.test @@ -6,6 +6,8 @@ drop table if exists t1; --enable_warnings +flush status; + show status like "feature%"; --echo # @@ -109,3 +111,20 @@ select updatexml('<div><div><span>1</span><span>2</span></div></div>', '/','<tr><td>1</td><td>2</td></tr>') as upd1; --replace_result 4 2 show status like "feature_xml"; + + +--echo # +--echo # Feature delayed_keys +--echo # + +create table t1 (a int, key(a)) engine=myisam delay_key_write=1; +insert into t1 values(1); +insert into t1 values(2); +drop table t1; + +create table t1 (a int, key(a)) engine=aria delay_key_write=1; +insert into t1 values(1); +insert into t1 values(2); +drop table t1; + +show status like "feature_delay_key_write"; |