summaryrefslogtreecommitdiff
path: root/mysql-test/t/innodb.test
diff options
context:
space:
mode:
authorserg@serg.mysql.com <>2002-08-21 20:55:34 +0000
committerserg@serg.mysql.com <>2002-08-21 20:55:34 +0000
commit99a954f405a55c88f759d309da775739d3f8fd08 (patch)
tree077077879672f832b6b343af53b8f4d0d8375553 /mysql-test/t/innodb.test
parent8160291c6e8d1aff6d4fbeacc5cc625a49d3123d (diff)
downloadmariadb-git-99a954f405a55c88f759d309da775739d3f8fd08.tar.gz
InnoDB support for HANDLER
Diffstat (limited to 'mysql-test/t/innodb.test')
-rw-r--r--mysql-test/t/innodb.test8
1 files changed, 1 insertions, 7 deletions
diff --git a/mysql-test/t/innodb.test b/mysql-test/t/innodb.test
index 0ddd4d357d0..e6d57899082 100644
--- a/mysql-test/t/innodb.test
+++ b/mysql-test/t/innodb.test
@@ -578,17 +578,11 @@ explain select a,b,c from t1;
drop table t1;
#
-# Check describe & handler
+# Check describe
#
create table t1 (t int not null default 1, key (t)) type=innodb;
desc t1;
---error 1031
-handler t1 open t1;
---error 1109
-handler t1 read t first;
---error 1109
-handler t1 close;
drop table t1;
#