~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_handler.c

  • Committer: Monty Taylor
  • Date: 2008-09-23 06:09:48 UTC
  • mto: This revision was merged to the branch mainline in revision 419.
  • Revision ID: monty@inaugust.com-20080923060948-pec1d5wxetf84tte
Cleaned up stuff out of global.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    b= dummy;                      \
36
36
  } while (0)
37
37
 
 
38
#define CMP_NUM(a,b) (((a) < (b)) ? -1 : ((a) == (b)) ? 0 : 1)
 
39
 
 
40
 
38
41
int ha_compare_text(const CHARSET_INFO * const charset_info, uchar *a, uint a_length,
39
42
                    uchar *b, uint b_length, bool part_key,
40
43
                    bool skip_end_space)