~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/my_handler.h

  • Committer: Monty Taylor
  • Date: 2008-12-24 01:49:53 UTC
  • mto: This revision was merged to the branch mainline in revision 751.
  • Revision ID: mordred@inaugust.com-20081224014953-rc9p7a162p74y889
Fixed connect.test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#ifndef _my_handler_h
19
19
#define _my_handler_h
20
20
 
 
21
#include <mystrings/m_ctype.h>
21
22
#include <storage/myisam/myisampack.h>
22
23
#ifdef  __cplusplus
23
24
extern "C" {
61
62
} HA_KEYSEG;
62
63
 
63
64
#define get_key_length(length,key) \
64
 
{ if (*(uchar*) (key) != 255) \
65
 
    length= (uint) *(uchar*) ((key)++); \
 
65
{ if (*(unsigned char*) (key) != 255) \
 
66
    length= (uint) *(unsigned char*) ((key)++); \
66
67
  else \
67
68
  { length= mi_uint2korr((key)+1); (key)+=3; } \
68
69
}
69
70
 
70
71
#define get_key_length_rdonly(length,key) \
71
 
{ if (*(uchar*) (key) != 255) \
72
 
    length= ((uint) *(uchar*) ((key))); \
 
72
{ if (*(unsigned char*) (key) != 255) \
 
73
    length= ((uint) *(unsigned char*) ((key))); \
73
74
  else \
74
75
  { length= mi_uint2korr((key)+1); } \
75
76
}
76
77
 
77
78
#define get_key_pack_length(length,length_pack,key) \
78
 
{ if (*(uchar*) (key) != 255) \
79
 
  { length= (uint) *(uchar*) ((key)++); length_pack= 1; }\
 
79
{ if (*(unsigned char*) (key) != 255) \
 
80
  { length= (uint) *(unsigned char*) ((key)++); length_pack= 1; }\
80
81
  else \
81
82
  { length=mi_uint2korr((key)+1); (key)+= 3; length_pack= 3; } \
82
83
}
106
107
#define clr_rec_bits(bit_ptr, bit_ofs, bit_len) \
107
108
  set_rec_bits(0, bit_ptr, bit_ofs, bit_len)
108
109
 
109
 
extern int ha_compare_text(const CHARSET_INFO * const, uchar *, uint, uchar *, uint, bool, bool);
 
110
extern int ha_compare_text(const CHARSET_INFO * const, unsigned char *, uint, unsigned char *, uint, bool, bool);
110
111
 
111
 
extern HA_KEYSEG *ha_find_null(HA_KEYSEG *keyseg, uchar *a);
112
 
extern void my_handler_error_register(void);
113
 
extern void my_handler_error_unregister(void);
114
 
extern int ha_key_cmp(HA_KEYSEG *keyseg, uchar *a,uchar *b,
115
 
                      uint key_length,uint nextflag,uint *diff_length);
 
112
extern HA_KEYSEG *ha_find_null(HA_KEYSEG *keyseg, unsigned char *a);
 
113
void my_handler_error_register(void);
 
114
void my_handler_error_unregister(void);
 
115
extern int ha_key_cmp(HA_KEYSEG *keyseg, unsigned char *a,unsigned char *b,
 
116
                      uint32_t key_length,uint32_t nextflag,uint32_t *diff_length);
116
117
 
117
118
/*
118
119
  Inside an in-memory data record, memory pointers to pieces of the