~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.cc

  • Committer: Brian Aker
  • Date: 2009-09-21 23:40:18 UTC
  • mfrom: (1039.5.63 replication)
  • Revision ID: brian@gaz-20090921234018-gd9kqdyigwxtik9z
Merge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
1215
1215
  if (arg)
1216
1216
    table->setReadSet(field_index);
1217
1217
  else
1218
 
    assert(0); // Not completed
 
1218
    table->clearReadSet(field_index);
1219
1219
}
1220
1220
 
1221
1221
void Field::setWriteSet(bool arg)
1223
1223
  if (arg)
1224
1224
    table->setWriteSet(field_index);
1225
1225
  else
1226
 
    assert(0); // Not completed
 
1226
    table->clearWriteSet(field_index);
1227
1227
}