diff options
author | monty@hundin.mysql.fi <> | 2001-10-10 02:50:28 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-10-10 02:50:28 +0300 |
commit | 06e719b7ccc1198df209ffa56eadf8d77f6a9ff8 (patch) | |
tree | 088cf9579071d756c85870f15378382121877072 /sql/handler.h | |
parent | 51555b40208ad606937dc2ea070ef0e681895806 (diff) | |
download | mariadb-git-06e719b7ccc1198df209ffa56eadf8d77f6a9ff8.tar.gz |
Remved Gemini code.
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/sql/handler.h b/sql/handler.h index f0806ea3bea..dc26ff1d303 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -25,7 +25,7 @@ #define NO_HASH /* Not yet implemented */ #endif -#if defined(HAVE_BERKELEY_DB) || defined(HAVE_INNOBASE_DB) || defined(HAVE_GEMINI_DB) +#if defined(HAVE_BERKELEY_DB) || defined(HAVE_INNOBASE_DB) #define USING_TRANSACTIONS #endif @@ -132,7 +132,6 @@ enum row_type { ROW_TYPE_NOT_USED=-1, ROW_TYPE_DEFAULT, ROW_TYPE_FIXED, typedef struct st_thd_trans { void *bdb_tid; void *innobase_tid; - void *gemini_tid; bool innodb_active_trans; } THD_TRANS; @@ -323,17 +322,6 @@ public: enum thr_lock_type lock_type)=0; }; -#ifdef HAVE_GEMINI_DB -struct st_gemini -{ - void *context; - unsigned long savepoint; - bool needSavepoint; - uint tx_isolation; - uint lock_count; -}; -#endif - /* Some extern variables used with handlers */ extern const char *ha_row_type[]; @@ -364,5 +352,4 @@ int ha_rollback_trans(THD *thd, THD_TRANS *trans); int ha_autocommit_or_rollback(THD *thd, int error); void ha_set_spin_retries(uint retries); bool ha_flush_logs(void); -int ha_commit_rename(THD *thd); int ha_recovery_logging(THD *thd, bool on); |