summaryrefslogtreecommitdiff
path: root/sql/ha_innobase.h
diff options
context:
space:
mode:
authorunknown <monty@donna.mysql.com>2001-01-12 13:53:06 +0200
committerunknown <monty@donna.mysql.com>2001-01-12 13:53:06 +0200
commit49a45d272bb1c30eb4a7c674a329f17e6af7a1bb (patch)
tree7e4dbc797fb8f37b134a441eba4202a157fc9a6d /sql/ha_innobase.h
parent1a10224cacd1036f79a387698f982bfb5e36add6 (diff)
downloadmariadb-git-49a45d272bb1c30eb4a7c674a329f17e6af7a1bb.tar.gz
Updates for innobase
Diffstat (limited to 'sql/ha_innobase.h')
-rw-r--r--sql/ha_innobase.h28
1 files changed, 10 insertions, 18 deletions
diff --git a/sql/ha_innobase.h b/sql/ha_innobase.h
index 4bd6cc4a0c6..fc9d4892c9b 100644
--- a/sql/ha_innobase.h
+++ b/sql/ha_innobase.h
@@ -21,15 +21,13 @@
#pragma interface /* gcc class implementation */
#endif
+/* Store the MySQL bool type definition to this defined type:
+inside ha_innobase we use the Innobase definition of the bool type! */
+typedef bool mysql_bool;
+
/* This file defines the Innobase handler: the interface between MySQL and
Innobase */
-extern "C" {
-#include <data0types.h>
-#include <dict0types.h>
-#include <row0types.h>
-}
-
typedef struct st_innobase_share {
THR_LOCK lock;
pthread_mutex_t mutex;
@@ -73,12 +71,6 @@ class ha_innobase: public handler
ulong max_row_length(const byte *buf);
uint store_key_val_for_row(uint keynr, char* buff, const byte* record);
- void convert_row_to_innobase(dtuple_t* row, char* record);
- void convert_row_to_mysql(char* record, dtuple_t* row);
- dtuple_t* convert_key_to_innobase(dtuple_t* tuple, byte* buf,
- dict_index_t* index,
- KEY* key, byte* key_ptr, int key_len);
- int calc_row_difference(upd_t* uvect, byte* old_row, byte* new_row);
int update_thd(THD* thd);
int change_active_index(uint keynr);
int general_fetch(byte* buf, uint direction, uint match_mode);
@@ -110,7 +102,7 @@ class ha_innobase: public handler
bool fast_key_read() { return 1;}
bool has_transactions() { return 1;}
- int open(const char *name, int mode, int test_if_locked);
+ int open(const char *name, int mode, uint test_if_locked);
void initialize(void);
int close(void);
double scan_time();
@@ -162,13 +154,14 @@ extern uint innobase_init_flags, innobase_lock_type;
extern ulong innobase_cache_size;
extern char *innobase_home, *innobase_tmpdir, *innobase_logdir;
extern long innobase_lock_scan_time;
-extern long innobase_mirrored_log_groups, innobase_mirrored_log_groups;
+extern long innobase_mirrored_log_groups, innobase_log_files_in_group;
extern long innobase_log_file_size, innobase_log_buffer_size;
extern long innobase_buffer_pool_size, innobase_additional_mem_pool_size;
extern long innobase_file_io_threads;
extern char *innobase_data_home_dir, *innobase_data_file_path;
extern char *innobase_log_group_home_dir, *innobase_log_arch_dir;
-extern bool innobase_flush_log_at_trx_commit,innobase_log_archive;
+extern bool innobase_flush_log_at_trx_commit, innobase_log_archive,
+ innobase_use_native_aio;
extern TYPELIB innobase_lock_typelib;
@@ -176,7 +169,6 @@ bool innobase_init(void);
bool innobase_end(void);
bool innobase_flush_logs(void);
-int innobase_commit(THD *thd);
-int innobase_rollback(THD *thd);
+int innobase_commit(THD *thd, void* trx_handle);
+int innobase_rollback(THD *thd, void* trx_handle);
int innobase_close_connection(THD *thd);
-