~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/rpl_record.cc

  • Committer: Brian Aker
  • Date: 2008-07-11 16:46:57 UTC
  • Revision ID: brian@tangent.org-20080711164657-45weklayjvmpbr2u
Cleanup of warning/errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
          length is stored in little-endian format, since this is the
97
97
          format used for the binlog.
98
98
        */
99
 
        const uchar *old_pack_ptr= pack_ptr;
100
99
        pack_ptr= field->pack(pack_ptr, field->ptr + offset,
101
100
                              field->max_data_length(), true);
102
101
      }
239
238
          the packed row comes from the table to which it is unpacked.
240
239
        */
241
240
        uint16 metadata= tabledef ? tabledef->field_metadata(i) : 0;
242
 
        uchar const *const old_pack_ptr= pack_ptr;
243
241
        pack_ptr= f->unpack(f->ptr, pack_ptr, metadata, true);
244
242
      }
245
243