~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.cc

  • Committer: Monty Taylor
  • Date: 2009-05-09 22:13:47 UTC
  • mto: This revision was merged to the branch mainline in revision 1009.
  • Revision ID: mordred@inaugust.com-20090509221347-l712szviusbobro0
Re-added bitset<> as a replacement for Bitmap<>

Show diffs side-by-side

added added

removed removed

Lines of Context:
1182
1182
  if (tmp->table->maybe_null)
1183
1183
    tmp->flags&= ~NOT_NULL_FLAG;
1184
1184
  tmp->table= new_table;
1185
 
  tmp->key_start.init(0);
1186
 
  tmp->part_of_key.init(0);
1187
 
  tmp->part_of_sortkey.init(0);
 
1185
  tmp->key_start.reset();
 
1186
  tmp->part_of_key.reset();
 
1187
  tmp->part_of_sortkey.reset();
1188
1188
  tmp->unireg_check= Field::NONE;
1189
1189
  tmp->flags&= (NOT_NULL_FLAG | BLOB_FLAG | UNSIGNED_FLAG | BINARY_FLAG | ENUM_FLAG | SET_FLAG);
1190
1190
  tmp->reset_fields();