~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/azio.h

  • Committer: Stewart Smith
  • Date: 2009-06-25 05:56:01 UTC
  • mto: (1089.11.1 basic-discovery)
  • mto: This revision was merged to the branch mainline in revision 1102.
  • Revision ID: stewart@flamingspork.com-20090625055601-x0mt0l1yo22xb77w
make ARCHIVE engine write table proto into 'frm' part of ARZ header. i.e. table proto now in .ARZ like the FRM was in MySQL (except cleaner, as we're not reading it off disk, we just deal with the data structure directly).

Show diffs side-by-side

added added

removed removed

Lines of Context:
370
370
size_t azwrite_row(azio_stream *s, void *buf, unsigned int len);
371
371
size_t azread_row(azio_stream *s, int *error);
372
372
 
373
 
extern int azwrite_frm (azio_stream *s, char *blob, unsigned int length);
 
373
extern int azwrite_frm (azio_stream *s, const char *blob, unsigned int length);
374
374
extern int azread_frm (azio_stream *s, char *blob);
375
375
extern int azwrite_comment (azio_stream *s, char *blob, unsigned int length);
376
376
extern int azread_comment (azio_stream *s, char *blob);