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 /sql/ha_innodb.cc | |
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 'sql/ha_innodb.cc')
-rw-r--r-- | sql/ha_innodb.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sql/ha_innodb.cc b/sql/ha_innodb.cc index ae787789a81..b6b86a1988a 100644 --- a/sql/ha_innodb.cc +++ b/sql/ha_innodb.cc @@ -404,7 +404,6 @@ ha_innobase::update_thd( return(0); } -#ifdef notdefined /* The code here appears for documentational purposes only. Not used or tested yet. Will be used in 4.1. */ /********************************************************************* @@ -420,9 +419,6 @@ ha_innobase::init_table_handle_for_HANDLER(void) { row_prebuilt_t* prebuilt; - ut_a(0); /* the code has not been used or tested yet; to prevent - inadvertent usage we assert an error here */ - /* If current thd does not yet have a trx struct, create one. If the current handle does not yet have a prebuilt struct, create one. Update the trx pointers in the prebuilt struct. Normally @@ -462,7 +458,6 @@ ha_innobase::init_table_handle_for_HANDLER(void) prebuilt->read_just_key = FALSE; } -#endif /************************************************************************* Opens an InnoDB database. */ |