~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/rpl_record.h

  • Committer: Brian Aker
  • Date: 2008-08-16 22:34:15 UTC
  • mto: This revision was merged to the branch mainline in revision 346.
  • Revision ID: brian@tangent.org-20080816223415-n24esdpfcqi4pwpy
Refactor around classes. TABLE_LIST has been factored out of table.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
#include <drizzled/rpl_reporting.h>
20
20
 
21
21
#if !defined(DRIZZLE_CLIENT)
22
 
size_t pack_row(TABLE* table, MY_BITMAP const* cols,
 
22
size_t pack_row(Table* table, MY_BITMAP const* cols,
23
23
                uchar *row_data, const uchar *data);
24
24
#endif
25
25
 
26
26
#if !defined(DRIZZLE_CLIENT) && defined(HAVE_REPLICATION)
27
27
int unpack_row(Relay_log_info const *rli,
28
 
               TABLE *table, uint const colcnt,
 
28
               Table *table, uint const colcnt,
29
29
               uchar const *const row_data, MY_BITMAP const *cols,
30
30
               uchar const **const row_end, ulong *const master_reclength);
31
31
 
32
32
// Fill table's record[0] with default values.
33
 
int prepare_record(TABLE *const, const MY_BITMAP *cols, uint width, const bool);
 
33
int prepare_record(Table *const, const MY_BITMAP *cols, uint width, const bool);
34
34
#endif
35
35
 
36
36
#endif