diff options
author | serg@serg.mysql.com <> | 2003-02-24 21:25:09 +0100 |
---|---|---|
committer | serg@serg.mysql.com <> | 2003-02-24 21:25:09 +0100 |
commit | aaa768890bb54e086e84aa97dacc0834f6c235ac (patch) | |
tree | ef7f195aa419d741e285c235bb005305fed2a9b3 /mysql-test | |
parent | ed964a1c742806cb69751d5fd4ec1b72d3e1b964 (diff) | |
download | mariadb-git-aaa768890bb54e086e84aa97dacc0834f6c235ac.tar.gz |
test updated
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/innodb_handler.result | 9 | ||||
-rw-r--r-- | mysql-test/t/innodb_handler.test | 12 |
2 files changed, 10 insertions, 11 deletions
diff --git a/mysql-test/r/innodb_handler.result b/mysql-test/r/innodb_handler.result index a55114a0e3d..79ebd96ceaf 100644 --- a/mysql-test/r/innodb_handler.result +++ b/mysql-test/r/innodb_handler.result @@ -129,11 +129,12 @@ a b handler t2 read next; a b 18 eee -alter table t1 type=innodb; -handler t2 read next; +handler t2 close; +handler t1 open as t2; +handler t2 read first; a b -19 fff +17 ddd +alter table t1 type=innodb; 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; diff --git a/mysql-test/t/innodb_handler.test b/mysql-test/t/innodb_handler.test index 6b85be9c7ab..0af822334fa 100644 --- a/mysql-test/t/innodb_handler.test +++ b/mysql-test/t/innodb_handler.test @@ -62,15 +62,13 @@ handler t2 read a=(19) where b="yyy"; handler t2 read first; handler t2 read next; -# -# We alter the table even if it's still in use by to test the Innodb -# delayed-drop code. This will generate a warning in the master.err log. -# +handler t2 close; + +handler t1 open as t2; +handler t2 read first; alter table t1 type=innodb; -handler t2 read next; ---error 1064 +--error 1109 handler t2 read last; -handler t2 close; drop table if exists t1; |