~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/rpl_record.cc

  • Committer: Brian Aker
  • Date: 2008-07-22 18:31:32 UTC
  • Revision ID: brian@tangent.org-20080722183132-ne2ntl7g7mdf2eez
uint32 -> uin32_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
339
339
    if ((uint) (field_ptr - table->field) >= cols->n_bits ||
340
340
        !bitmap_is_set(cols, field_ptr - table->field))
341
341
    {
342
 
      uint32 const mask= NOT_NULL_FLAG | NO_DEFAULT_VALUE_FLAG;
 
342
      uint32_t const mask= NOT_NULL_FLAG | NO_DEFAULT_VALUE_FLAG;
343
343
      Field *const f= *field_ptr;
344
344
 
345
345
      if (check && ((f->flags & mask) == mask))