~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_rsamepos.c

  • Committer: Brian Aker
  • Date: 2008-09-04 19:31:00 UTC
  • Revision ID: brian@tangent.org-20080904193100-l849hgghfy4urj43
Changing default character set from this point on.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
/* As mi_rsame but supply a position */
18
18
 
19
19
#include "myisamdef.h"
20
 
#include <drizzled/util/test.h>
21
 
 
22
20
 
23
21
 
24
22
        /*
29
27
        ** HA_ERR_END_OF_FILE   = End of file
30
28
        */
31
29
 
32
 
int mi_rsame_with_pos(MI_INFO *info, unsigned char *record, int inx, my_off_t filepos)
 
30
int mi_rsame_with_pos(MI_INFO *info, uchar *record, int inx, my_off_t filepos)
33
31
{
34
32
  if (inx < -1 ||
35
33
      (inx >= 0 && ! mi_is_key_active(info->s->state.key_map, inx)))