~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/sort.c

  • Committer: Super-User
  • Date: 2008-11-23 01:08:08 UTC
  • mto: This revision was merged to the branch mainline in revision 602.
  • Revision ID: root@bitters-20081123010808-7cenki9nrcjjdz4d
Fixed solaris build crap.

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