~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/opt_range.cc

  • Committer: Monty Taylor
  • Date: 2008-10-06 01:30:47 UTC
  • Revision ID: monty@inaugust.com-20081006013047-6m2ejc0c4peye2k9
Removed my_free(). It turns out that it had been def'd to ignore the flags passed to it in the second arg anyway. Gotta love that.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1025
1025
    select->file= *head->sort.io_cache;
1026
1026
    select->records=(ha_rows) (select->file.end_of_file/
1027
1027
                               head->file->ref_length);
1028
 
    my_free(head->sort.io_cache, MYF(0));
 
1028
    free(head->sort.io_cache);
1029
1029
    head->sort.io_cache=0;
1030
1030
  }
1031
1031
  return(select);
1144
1144
    }
1145
1145
    delete_dynamic(&ranges); /* ranges are allocated in alloc */
1146
1146
    free_root(&alloc,MYF(0));
1147
 
    my_free((char*) column_bitmap.bitmap, MYF(MY_ALLOW_ZERO_PTR));
 
1147
    free((char*) column_bitmap.bitmap);
1148
1148
  }
1149
1149
  head->column_bitmaps_set(save_read_set, save_write_set);
1150
1150
  if (mrr_buf_desc)