summaryrefslogtreecommitdiff
path: root/sql/ha_innodb.h
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2002-11-03 10:15:14 +0200
committerunknown <bell@sanja.is.com.ua>2002-11-03 10:15:14 +0200
commitc987bc2a5e716b61fb907ed9ca9087a3fa148cc7 (patch)
treefeab8ca130dab7caf8716a9f1f3dac2c75847e17 /sql/ha_innodb.h
parent4358ac0c9f58ea8fa9e7fdb2374e81bdc144d93c (diff)
downloadmariadb-git-c987bc2a5e716b61fb907ed9ca9087a3fa148cc7.tar.gz
new innodb query cache behaviour (recommit because of problem with 4.1 repository pushing)
fixed bug in quqry cache dbd transaction processing mysql-test/r/innodb_cache.result: new innodb query cache behaviour sql/ha_berkeley.h: new innodb query cache behaviour sql/ha_innodb.cc: new innodb query cache behaviour sql/ha_innodb.h: new innodb query cache behaviour sql/handler.cc: new innodb query cache behaviour fixed bug in transaction support of bdb sql/handler.h: new innodb query cache behaviour sql/sql_cache.cc: new innodb query cache behaviour sql/sql_cache.h: new innodb query cache behaviour
Diffstat (limited to 'sql/ha_innodb.h')
-rw-r--r--sql/ha_innodb.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sql/ha_innodb.h b/sql/ha_innodb.h
index 357fb31b5e3..9055c8b8239 100644
--- a/sql/ha_innodb.h
+++ b/sql/ha_innodb.h
@@ -168,6 +168,7 @@ class ha_innobase: public handler
enum thr_lock_type lock_type);
void init_table_handle_for_HANDLER();
longlong get_auto_increment();
+ uint8 table_cache_type() { return HA_CACHE_TBL_ASKTRANSACT; }
};
extern bool innodb_skip;
@@ -206,5 +207,5 @@ int innobase_close_connection(THD *thd);
int innobase_drop_database(char *path);
int innodb_show_status(THD* thd);
-my_bool innobase_query_caching_of_table_permitted(THD* thd, char* full_name,
- uint full_name_len);
+bool innobase_query_caching_of_table_permitted(THD* thd, char* full_name,
+ uint full_name_len);