Commit 2cfc80d4 authored by Zardosht Kasheff's avatar Zardosht Kasheff Committed by Yoni Fogel

addresses #814

remove extraneous variable

git-svn-id: file:///svn/mysql/tokudb-engine/src@4925 c7de825b-a66e-492c-adef-691d508d4ae1
parent 01008c5a
...@@ -703,7 +703,7 @@ ha_tokudb::ha_tokudb(handlerton * hton, TABLE_SHARE * table_arg) ...@@ -703,7 +703,7 @@ ha_tokudb::ha_tokudb(handlerton * hton, TABLE_SHARE * table_arg)
// flags defined in sql\handler.h // flags defined in sql\handler.h
int_table_flags(HA_REC_NOT_IN_SEQ | HA_FAST_KEY_READ | HA_NULL_IN_KEY | HA_CAN_INDEX_BLOBS | HA_PRIMARY_KEY_IN_READ_INDEX | int_table_flags(HA_REC_NOT_IN_SEQ | HA_FAST_KEY_READ | HA_NULL_IN_KEY | HA_CAN_INDEX_BLOBS | HA_PRIMARY_KEY_IN_READ_INDEX |
HA_FILE_BASED | HA_CAN_GEOMETRY | HA_AUTO_PART_KEY | HA_TABLE_SCAN_ON_INDEX), HA_FILE_BASED | HA_CAN_GEOMETRY | HA_AUTO_PART_KEY | HA_TABLE_SCAN_ON_INDEX),
last_dup_key((uint) - 1), version(0), using_ignore(0), last_cursor_error(0),range_lock_grabbed(false), primary_key_offsets(NULL) { last_dup_key((uint) - 1), using_ignore(0), last_cursor_error(0),range_lock_grabbed(false), primary_key_offsets(NULL) {
transaction = NULL; transaction = NULL;
} }
...@@ -2988,8 +2988,7 @@ int ha_tokudb::info(uint flag) { ...@@ -2988,8 +2988,7 @@ int ha_tokudb::info(uint flag) {
} }
stats.deleted = 0; stats.deleted = 0;
} }
if ((flag & HA_STATUS_CONST) || version != share->version) { if ((flag & HA_STATUS_CONST)) {
version = share->version;
for (uint i = 0; i < table_share->keys; i++) { for (uint i = 0; i < table_share->keys; i++) {
table->key_info[i].rec_per_key[table->key_info[i].key_parts - 1] = 0; table->key_info[i].rec_per_key[table->key_info[i].key_parts - 1] = 0;
} }
......
...@@ -113,7 +113,6 @@ class ha_tokudb : public handler { ...@@ -113,7 +113,6 @@ class ha_tokudb : public handler {
// if non-zero (not necessarily 1), primary key is hidden // if non-zero (not necessarily 1), primary key is hidden
// //
uint hidden_primary_key; uint hidden_primary_key;
uint version;
bool key_read, using_ignore; bool key_read, using_ignore;
// //
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment