~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_subselect.cc

  • Committer: Brian Aker
  • Date: 2008-08-15 21:14:46 UTC
  • mto: This revision was merged to the branch mainline in revision 346.
  • Revision ID: brian@tangent.org-20080815211446-aqtozo1hoe8mb2az
Commiting next pass of Table class cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2960
2960
      tmp_table->s->uniques ||
2961
2961
      tmp_table->key_info->key_length >= tmp_table->file->max_key_length() ||
2962
2962
      tmp_table->key_info->key_parts > tmp_table->file->max_key_parts());
2963
 
    free_tmp_table(thd, tmp_table);
 
2963
    tmp_table->free_tmp_table(thd);
2964
2964
    delete result;
2965
2965
    result= NULL;
2966
2966
    return(true);
3051
3051
{
3052
3052
  delete result;
3053
3053
  if (tab)
3054
 
    free_tmp_table(thd, tab->table);
 
3054
    tab->table->free_tmp_table(thd);
3055
3055
}
3056
3056
 
3057
3057