diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-07-12 21:41:20 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-07-12 21:41:20 +0200 |
commit | 8367241d5a6aa3434846022ed8e0ac82901668b6 (patch) | |
tree | 64ddb98795b9669fcce82fadcb9d6cae1ac30f77 /mysql-test/suite/handler/innodb.result | |
parent | 224238a073ed143e1b97cbfa5844b518e7ac9595 (diff) | |
download | mariadb-git-8367241d5a6aa3434846022ed8e0ac82901668b6.tar.gz |
update handler.* tests
Diffstat (limited to 'mysql-test/suite/handler/innodb.result')
-rw-r--r-- | mysql-test/suite/handler/innodb.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/suite/handler/innodb.result b/mysql-test/suite/handler/innodb.result index db36640ea39..4338c018052 100644 --- a/mysql-test/suite/handler/innodb.result +++ b/mysql-test/suite/handler/innodb.result @@ -583,11 +583,11 @@ select * from t1; ERROR 42S02: Table 'test.t1' doesn't exist drop table if exists t1; Warnings: -Note 1051 Unknown table 't1' +Note 1051 Unknown table 'test.t1' create table t1 (a int not null) ENGINE=csv; --> client 2 handler t1 open; -ERROR HY000: Table storage engine for 't1' doesn't have this option +ERROR HY000: Storage engine CSV of the table `test`.`t1` doesn't have this option --> client 1 drop table t1; create table t1 (a int); @@ -743,7 +743,7 @@ ERROR HY000: Can't execute the given command because you have active locked tabl handler t2 close; ERROR HY000: Can't execute the given command because you have active locked tables or an active transaction handler t3 open; -ERROR HY000: Can't execute the given command because you have active locked tables or an active transaction +ERROR HY000: Can't reopen table: 't3' # After UNLOCK TABLES handlers should be around and # we should be able to continue reading through them. unlock tables; |