diff options
author | unknown <serg@serg.mysql.com> | 2002-08-21 20:55:34 +0000 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2002-08-21 20:55:34 +0000 |
commit | 3f93edfa141c28e479781a5c0fa6c59150dc6369 (patch) | |
tree | 077077879672f832b6b343af53b8f4d0d8375553 /mysql-test/r/innodb.result | |
parent | bccec2296baf616eae4ed7ac854dc5b726b2cd4e (diff) | |
download | mariadb-git-3f93edfa141c28e479781a5c0fa6c59150dc6369.tar.gz |
InnoDB support for HANDLER
mysql-test/r/innodb.result:
remove handler test from innodb.test
mysql-test/t/innodb.test:
remove handler test from innodb.test
sql/ha_innodb.cc:
HANDLER support
sql/ha_innodb.h:
HANDLER support
sql/handler.h:
HANDLER support for InnoDB
sql/sql_handler.cc:
HANDLER support for InnoDB
Diffstat (limited to 'mysql-test/r/innodb.result')
-rw-r--r-- | mysql-test/r/innodb.result | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mysql-test/r/innodb.result b/mysql-test/r/innodb.result index db6b55e1a2a..c9ae4170238 100644 --- a/mysql-test/r/innodb.result +++ b/mysql-test/r/innodb.result @@ -920,12 +920,6 @@ create table t1 (t int not null default 1, key (t)) type=innodb; desc t1; Field Type Null Key Default Extra t int(11) MUL 1 -handler t1 open t1; -Table handler for 't1' doesn't have this option -handler t1 read t first; -Unknown table 't1' in HANDLER -handler t1 close; -Unknown table 't1' in HANDLER drop table t1; CREATE TABLE t1 ( number bigint(20) NOT NULL default '0', |