cleanup
This commit is contained in:
parent
f4b165ae05
commit
9749ece292
@ -67,7 +67,7 @@ int find_ref_key(TABLE *table,Field *field, uint *key_length)
|
||||
|
||||
|
||||
/* Copy a key from record to some buffer */
|
||||
/* if length == 0 then copy hole key */
|
||||
/* if length == 0 then copy whole key */
|
||||
|
||||
void key_copy(byte *key,TABLE *table,uint idx,uint key_length)
|
||||
{
|
||||
|
@ -2757,19 +2757,15 @@ static bool create_ref_for_key(JOIN *join, JOIN_TAB *j, KEYUSE *org_keyuse,
|
||||
if (!keyuse->used_tables &&
|
||||
!(join->select_options & SELECT_DESCRIBE))
|
||||
{ // Compare against constant
|
||||
store_key_item *tmp=new store_key_item(thd,
|
||||
keyinfo->key_part[i].field,
|
||||
(char*)key_buff +
|
||||
maybe_null,
|
||||
maybe_null ?
|
||||
(char*) key_buff : 0,
|
||||
keyinfo->key_part[i].length,
|
||||
keyuse->val);
|
||||
store_key_item tmp(thd, keyinfo->key_part[i].field,
|
||||
(char*)key_buff + maybe_null,
|
||||
maybe_null ? (char*) key_buff : 0,
|
||||
keyinfo->key_part[i].length, keyuse->val);
|
||||
if (thd->is_fatal_error)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
tmp->copy();
|
||||
tmp.copy();
|
||||
}
|
||||
else
|
||||
*ref_key++= get_store_key(thd,
|
||||
|
@ -174,7 +174,7 @@ class JOIN :public Sql_alloc
|
||||
Item_sum **sum_funcs;
|
||||
Procedure *procedure;
|
||||
Item *having;
|
||||
Item *tmp_having; // To store Having when processed tenporary table
|
||||
Item *tmp_having; // To store Having when processed temporary table
|
||||
uint select_options;
|
||||
select_result *result;
|
||||
TMP_TABLE_PARAM tmp_table_param;
|
||||
@ -307,7 +307,6 @@ class store_key :public Sql_alloc
|
||||
{
|
||||
protected:
|
||||
Field *to_field; // Store data here
|
||||
Field *key_field; // Copy of key field
|
||||
char *null_ptr;
|
||||
char err;
|
||||
public:
|
||||
|
Loading…
x
Reference in New Issue
Block a user