diff options
Diffstat (limited to 'mysql-test/r/handler.result')
-rw-r--r-- | mysql-test/r/handler.result | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mysql-test/r/handler.result b/mysql-test/r/handler.result index b47f97e167f..9d3383efd8f 100644 --- a/mysql-test/r/handler.result +++ b/mysql-test/r/handler.result @@ -138,4 +138,10 @@ a b handler t2 read last; You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 handler t2 close; -drop table if exists t1; +handler t1 open as t2; +drop table t1; +create table t1 (a int); +insert into t1 values (17); +handler t2 read first; +Unknown table 't2' in HANDLER +drop table t1; |