~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/item_row.cc

Merging from trunk r102

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
  }
49
49
}
50
50
 
51
 
void Item_row::illegal_method_call(const char *method)
 
51
void Item_row::illegal_method_call(const char *method __attribute__((__unused__)))
52
52
{
53
53
  DBUG_ENTER("Item_row::illegal_method_call");
54
54
  DBUG_PRINT("error", ("!!! %s method was called for row item", method));
57
57
  DBUG_VOID_RETURN;
58
58
}
59
59
 
60
 
bool Item_row::fix_fields(THD *thd, Item **ref)
 
60
bool Item_row::fix_fields(THD *thd, Item **ref __attribute__((__unused__)))
61
61
{
62
62
  DBUG_ASSERT(fixed == 0);
63
63
  null_value= 0;
124
124
  }
125
125
}
126
126
 
127
 
void Item_row::fix_after_pullout(st_select_lex *new_parent, Item **ref)
 
127
void Item_row::fix_after_pullout(st_select_lex *new_parent,
 
128
                                 Item **ref __attribute__((__unused__)))
128
129
{
129
130
  used_tables_cache= 0;
130
131
  const_item_cache= 1;