diff options
author | unknown <heikki@hundin.mysql.fi> | 2002-09-20 23:26:21 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2002-09-20 23:26:21 +0300 |
commit | a72de62ac90117fd4def0486a23c9d5ffd3a0112 (patch) | |
tree | 192127088cbbe2dcb7c71bab17b1c4b1c888b527 /sql/ha_innodb.h | |
parent | c2eabae4b1f9c2132da430ed9b2a343cbc303ef6 (diff) | |
download | mariadb-git-a72de62ac90117fd4def0486a23c9d5ffd3a0112.tar.gz |
ha_innodb.cc, ha_innodb.h:
Fix assertion when a temporary table is created and used inside LOCK TABLES
sql/ha_innodb.h:
Fix assertion when a temporary table is created and used inside LOCK TABLES
sql/ha_innodb.cc:
Fix assertion when a temporary table is created and used inside LOCK TABLES
Diffstat (limited to 'sql/ha_innodb.h')
-rw-r--r-- | sql/ha_innodb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/ha_innodb.h b/sql/ha_innodb.h index 7686e308cc2..357fb31b5e3 100644 --- a/sql/ha_innodb.h +++ b/sql/ha_innodb.h @@ -146,6 +146,8 @@ class ha_innobase: public handler int extra(enum ha_extra_function operation); int reset(void); int external_lock(THD *thd, int lock_type); + int start_stmt(THD *thd); + void position(byte *record); ha_rows records_in_range(int inx, const byte *start_key,uint start_key_len, |