~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/filesort.cc

Removed MC68000 compiler directive.  I mean, really...

Show diffs side-by-side

added added

removed removed

Lines of Context:
624
624
 
625
625
  sort_length= param->sort_length;
626
626
  rec_length= param->rec_length;
627
 
#ifdef MC68000
628
 
  quicksort(sort_keys,count,sort_length);
629
 
#else
630
627
  my_string_ptr_sort((uchar*) sort_keys, (uint) count, sort_length);
631
 
#endif
632
628
  if (!my_b_inited(tempfile) &&
633
629
      open_cached_file(tempfile, mysql_tmpdir, TEMP_PREFIX, DISK_BUFFER_SIZE,
634
630
                       MYF(MY_WME)))