~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/ptr_cmp.cc

  • Committer: Padraig O'Sullivan
  • Date: 2009-08-08 04:22:33 UTC
  • mto: (1115.3.4 captain)
  • mto: This revision was merged to the branch mainline in revision 1117.
  • Revision ID: osullivan.padraig@gmail.com-20090808042233-q0z88zc490z3f3r7
Renamed the Command class to be Statement. Renamed the command directory to
statement and also the command header file to statement. Updated various
source files to reflect this renaming.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
  The bytes are compare as unsigned chars.
20
20
  */
21
21
 
22
 
#include "config.h"
23
 
#include "drizzled/internal/my_sys.h"
24
 
 
25
 
#include <assert.h>
26
 
 
 
22
#include "mysys/mysys_priv.h"
27
23
#include "plugin/myisam/myisampack.h"
28
24
 
29
 
namespace drizzled
30
 
{
31
 
namespace internal
32
 
{
33
 
 
34
25
static int ptr_compare(size_t *compare_length, unsigned char **a, unsigned char **b);
35
26
static int ptr_compare_0(size_t *compare_length, unsigned char **a, unsigned char **b);
36
27
static int ptr_compare_1(size_t *compare_length, unsigned char **a, unsigned char **b);
199
190
 return pos;
200
191
}
201
192
 
202
 
} /* namespace internal */
203
 
} /* namespace drizzled */