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/sql_class.h | |
parent | 51555b40208ad606937dc2ea070ef0e681895806 (diff) | |
download | mariadb-git-06e719b7ccc1198df209ffa56eadf8d77f6a9ff8.tar.gz |
Remved Gemini code.
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index b34b97b29a0..f2e174d85c1 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -262,9 +262,6 @@ public: THD_TRANS stmt; /* Trans for current statement */ uint bdb_lock_count; } transaction; -#ifdef HAVE_GEMINI_DB - struct st_gemini gemini; -#endif Item *free_list, *handler_items; CONVERT *convert_set; Field *dupp_field; @@ -280,7 +277,6 @@ public: max_join_size, sent_row_count, examined_row_count; table_map used_tables; ulong query_id,version, inactive_timeout,options,thread_id; - ulong gemini_spin_retries; long dbug_thread_id; pthread_t real_id; uint current_tablenr,tmp_table,cond_count,col_access,query_length; @@ -374,12 +370,10 @@ public: { #ifdef USING_TRANSACTIONS return (transaction.all.bdb_tid != 0 || - transaction.all.innodb_active_trans != 0 || - transaction.all.gemini_tid != 0); + transaction.all.innodb_active_trans != 0); #else return 0; #endif - } inline gptr alloc(unsigned int size) { return alloc_root(&mem_root,size); } inline gptr calloc(unsigned int size) |