~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/sort.c

  • Committer: Brian Aker
  • Date: 2008-11-23 01:22:38 UTC
  • mfrom: (598.1.1 trunk)
  • Revision ID: brian@tangent.org-20081123012238-ax0w8xd30izgip5y
Merge in Monty's work for Solaris Sun Studio

Show diffs side-by-side

added added

removed removed

Lines of Context:
881
881
  strpos=(unsigned char*) sort_keys;
882
882
  sort_length=info->key_length;
883
883
 
884
 
  if (init_queue(&queue,(uint) (Tb-Fb)+1,offsetof(BUFFPEK,key),0,
885
 
                 (int (*)(void*, unsigned char *,unsigned char*)) info->key_cmp,
 
884
 
 
885
  if (init_queue(&queue,(uint32_t) (Tb-Fb)+1,(uint32_t) offsetof(BUFFPEK,key),
 
886
                 false,
 
887
                 (queue_compare) info->key_cmp,
886
888
                 (void*) info))
887
889
    return(1); /* purecov: inspected */
888
890