~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/my_handler.h

  • Committer: Lee
  • Date: 2008-10-30 22:02:01 UTC
  • mto: (572.1.2 devel)
  • mto: This revision was merged to the branch mainline in revision 573.
  • Revision ID: lbieber@lbieber-desktop-20081030220201-elb6qprbzpn7c5a4
add my name to the AUTHORS file

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
   You should have received a copy of the GNU Library General Public
14
14
   License along with this library; if not, write to the Free
15
 
   Software Foundation, Inc., 51 Franklin Place - Suite 330, Boston,
16
 
   MA 02110-1301, USA */
17
 
 
18
 
#ifndef PLUGIN_MYISAM_MY_HANDLER_H
19
 
#define PLUGIN_MYISAM_MY_HANDLER_H
20
 
 
21
 
#include "drizzled/charset_info.h"
22
 
#include <plugin/myisam/myisampack.h>
 
15
   Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 
16
   MA 02111-1307, USA */
 
17
 
 
18
#ifndef _my_handler_h
 
19
#define _my_handler_h
 
20
 
 
21
#include <storage/myisam/myisampack.h>
 
22
#ifdef  __cplusplus
 
23
extern "C" {
 
24
#endif
23
25
 
24
26
/*
25
27
  There is a hard limit for the maximum number of keys as there are only
45
47
 
46
48
typedef struct st_HA_KEYSEG             /* Key-portion */
47
49
{
48
 
  const drizzled::CHARSET_INFO *charset;
 
50
  const CHARSET_INFO *charset;
49
51
  uint32_t start;                               /* Start of key in record */
50
52
  uint32_t null_pos;                    /* position to NULL indicator */
51
53
  uint16_t bit_pos;                       /* Position to bit part */
104
106
#define clr_rec_bits(bit_ptr, bit_ofs, bit_len) \
105
107
  set_rec_bits(0, bit_ptr, bit_ofs, bit_len)
106
108
 
107
 
extern int ha_compare_text(const drizzled::CHARSET_INFO * const, unsigned char *, uint, unsigned char *, uint, bool, bool);
 
109
extern int ha_compare_text(const CHARSET_INFO * const, unsigned char *, uint, unsigned char *, uint, bool, bool);
108
110
 
109
111
extern HA_KEYSEG *ha_find_null(HA_KEYSEG *keyseg, unsigned char *a);
110
112
void my_handler_error_register(void);
 
113
void my_handler_error_unregister(void);
111
114
extern int ha_key_cmp(HA_KEYSEG *keyseg, unsigned char *a,unsigned char *b,
112
115
                      uint32_t key_length,uint32_t nextflag,uint32_t *diff_length);
113
116
 
117
120
  this amount of bytes.
118
121
*/
119
122
#define portable_sizeof_char_ptr 8
 
123
#ifdef  __cplusplus
 
124
}
 
125
#endif
120
126
 
121
 
#endif /* PLUGIN_MYISAM_MY_HANDLER_H */
 
127
#endif /* _my_handler_h */