diff options
author | Michael Widenius <monty@askmonty.org> | 2012-08-23 00:32:25 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2012-08-23 00:32:25 +0300 |
commit | f277f27ae2fb4ab45a014027f08093a28acc1c14 (patch) | |
tree | e8e1c9bd3f005871e29b35d7383d843f446645f9 /mysql-test/r/status.result | |
parent | f1159b18d930910d5b5b9c454a17b0ee66f853c3 (diff) | |
download | mariadb-git-f277f27ae2fb4ab45a014027f08093a28acc1c14.tar.gz |
Fixing test cases
Added missing system tables used in 5.6
Diffstat (limited to 'mysql-test/r/status.result')
-rw-r--r-- | mysql-test/r/status.result | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/r/status.result b/mysql-test/r/status.result index 0da65a5ab51..140db7c5721 100644 --- a/mysql-test/r/status.result +++ b/mysql-test/r/status.result @@ -275,6 +275,7 @@ Variable_name Value Handler_commit 0 Handler_delete 0 Handler_discover 0 +Handler_external_lock 0 Handler_icp_attempts 0 Handler_icp_match 0 Handler_mrr_init 0 @@ -303,7 +304,7 @@ Created_tmp_files 0 Created_tmp_tables 2 Handler_tmp_update 2 Handler_tmp_write 7 -Rows_tmp_read 41 +Rows_tmp_read 42 drop table t1; CREATE TABLE t1 (i int(11) DEFAULT NULL, KEY i (i) ) ENGINE=MyISAM; insert into t1 values (1),(2),(3),(4),(5); @@ -316,6 +317,7 @@ Variable_name Value Handler_commit 0 Handler_delete 0 Handler_discover 0 +Handler_external_lock 0 Handler_icp_attempts 0 Handler_icp_match 0 Handler_mrr_init 0 |