~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/mf_sort.cc

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
/* Sort of string pointers in string-order with radix or qsort */
17
17
 
18
 
#include "drizzled/internal/mysys_priv.h"
 
18
#include "config.h"
 
19
 
 
20
#include "drizzled/internal/my_sys.h"
19
21
#include "drizzled/internal/m_string.h"
20
22
 
 
23
namespace drizzled
 
24
{
 
25
namespace internal
 
26
{
 
27
 
21
28
void my_string_ptr_sort(unsigned char *base, uint32_t items, size_t size)
22
29
{
23
30
#if INT_MAX > 65536L
39
46
    }
40
47
  }
41
48
}
 
49
 
 
50
} /* namespace internal */
 
51
} /* namespace drizzled */