~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/sort.c

  • Committer: Brian Aker
  • Date: 2009-01-28 19:37:25 UTC
  • mfrom: (779.3.11 devel)
  • Revision ID: brian@tangent.org-20090128193725-pz7g7dnp2dx0863e
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
851
851
}
852
852
 
853
853
 
854
 
static int  write_merge_key(MI_SORT_PARAM *info __attribute__((unused)),
 
854
static int  write_merge_key(MI_SORT_PARAM *info,
855
855
                                  IO_CACHE *to_file, unsigned char *key,
856
856
                                  uint32_t sort_length, uint32_t count)
857
857
{
 
858
  (void)info;
858
859
  return my_b_write(to_file, key, (size_t) sort_length*count);
859
860
}
860
861