~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Brian Aker
  • Date: 2010-08-04 01:57:12 UTC
  • mfrom: (1684.1.2 drizzle)
  • Revision ID: brian@gaz-20100804015712-50u80w8ie7p9fgau
Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
  uint32_t (*next) (range_seq_t seq, KEY_MULTI_RANGE *range);
118
118
} RANGE_SEQ_IF;
119
119
 
120
 
/*
121
 
  This is a buffer area that the handler can use to store rows.
122
 
  'end_of_used_area' should be kept updated after calls to
123
 
  read-functions so that other parts of the code can use the
124
 
  remaining area (until next read calls is issued).
125
 
*/
126
 
 
127
 
typedef struct st_handler_buffer
128
 
{
129
 
  unsigned char *buffer;         /* Buffer one can start using */
130
 
  unsigned char *buffer_end;     /* End of buffer */
131
 
  unsigned char *end_of_used_area;     /* End of area that was used by handler */
132
 
} HANDLER_BUFFER;
133
 
 
134
120
} /* namespace drizzled */
135
121
 
136
122
#endif /* DRIZZLED_HANDLER_STRUCTS_H */