~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_rrnd.c

  • Committer: Monty Taylor
  • Date: 2008-10-09 22:38:27 UTC
  • mto: This revision was merged to the branch mainline in revision 497.
  • Revision ID: monty@inaugust.com-20081009223827-bc9gvpiplsmvpwyq
Moved test() to its own file.
Made a new function to possibly replace int10_to_str.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
   get by MI_INFO. The next record can be read with pos= MI_POS_ERROR */
18
18
 
19
19
 
20
 
#include "myisam_priv.h"
21
 
 
22
 
using namespace drizzled;
 
20
#include "myisamdef.h"
23
21
 
24
22
/*
25
23
           Read a row based on position.
31
29
           HA_ERR_END_OF_FILE = EOF.
32
30
*/
33
31
 
34
 
int mi_rrnd(MI_INFO *info, unsigned char *buf, register internal::my_off_t filepos)
 
32
int mi_rrnd(MI_INFO *info, unsigned char *buf, register my_off_t filepos)
35
33
{
36
34
  bool skip_deleted_blocks;
37
35
 
54
52
  info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
55
53
 
56
54
  if (info->opt_flag & WRITE_CACHE_USED && flush_io_cache(&info->rec_cache))
57
 
    return(errno);
 
55
    return(my_errno);
58
56
 
59
57
  return ((*info->s->read_rnd)(info,buf,filepos,skip_deleted_blocks));
60
58
}