diff options
author | unknown <bell@sanja.is.com.ua> | 2006-06-01 21:47:15 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2006-06-01 21:47:15 +0300 |
commit | 1101cda353093dc3c22e214452b8a98ad452f2c3 (patch) | |
tree | 4372d3e7e74132ed1045d118bbc3390670b40809 /sql/ha_innodb.cc | |
parent | a04d9fa947ec5fc22368c15d7c6c7ba47898405f (diff) | |
download | mariadb-git-1101cda353093dc3c22e214452b8a98ad452f2c3.tar.gz |
interface for transaction log management added to handlerton
iterators creation interface added to handlerton
sql/ha_berkeley.cc:
added new methods
sql/ha_federated.cc:
added new methods
sql/ha_heap.cc:
added new methods
sql/ha_innodb.cc:
added new methods
sql/ha_myisam.cc:
added new methods
sql/ha_myisammrg.cc:
added new methods
sql/ha_ndbcluster.cc:
added new methods
sql/ha_partition.cc:
added new methods
sql/handler.cc:
added new methods
spelling fixed
examples of functions for new interface added
sql/handler.h:
transaction logs management interface added
general iterator creatioin interface added
sql/log.cc:
added new methods
storage/archive/ha_archive.cc:
added new methods
storage/blackhole/ha_blackhole.cc:
added new methods
storage/csv/ha_tina.cc:
added new methods
storage/example/ha_example.cc:
added new methods
Diffstat (limited to 'sql/ha_innodb.cc')
-rw-r--r-- | sql/ha_innodb.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/ha_innodb.cc b/sql/ha_innodb.cc index 0b2f561e8c9..86d98953fa9 100644 --- a/sql/ha_innodb.cc +++ b/sql/ha_innodb.cc @@ -244,7 +244,9 @@ handlerton innobase_hton = { HTON_NO_FLAGS, NULL, /* binlog_func */ NULL, /* binlog_log_query */ - innobase_release_temporary_latches + innobase_release_temporary_latches, + NULL, /* get_log_status */ + NULL /* create_iterator */ }; |