~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/mf_radix.cc

  • Committer: Monty Taylor
  • Date: 2010-02-05 08:11:15 UTC
  • mfrom: (1283 build)
  • mto: (1273.13.43 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: mordred@inaugust.com-20100205081115-dr82nvrwv4lvw7sd
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
  2-3 times faster than quicksort
21
21
*/
22
22
 
23
 
#include "drizzled/internal/mysys_priv.h"
 
23
#include "config.h"
 
24
 
 
25
#include "drizzled/internal/my_sys.h"
24
26
#include "drizzled/internal/m_string.h"
25
27
 
 
28
namespace drizzled
 
29
{
 
30
namespace internal
 
31
{
 
32
 
26
33
        /* Radixsort */
27
34
 
28
35
void radixsort_for_str_ptr(unsigned char **base, uint32_t number_of_elements, size_t size_of_element, unsigned char **buffer)
52
59
  next:;
53
60
  }
54
61
}
 
62
 
 
63
} /* namespace internal */
 
64
} /* namespace drizzled */