~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.cc

  • Committer: Brian Aker
  • Date: 2009-07-11 05:59:19 UTC
  • mfrom: (1089.1.9 merge)
  • Revision ID: brian@gaz-20090711055919-m4px3crrdgta5lie
Collection of patches from new-cleanup (includes asserts for field in debug)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1209
1209
1210
1210
  return table->isWriteSet(field_index); 
1211
1211
}
 
1212
 
 
1213
void Field::setReadSet(bool arg)
 
1214
{
 
1215
  if (arg)
 
1216
    table->setReadSet(field_index);
 
1217
  else
 
1218
    assert(0); // Not completed
 
1219
}
 
1220
 
 
1221
void Field::setWriteSet(bool arg)
 
1222
{
 
1223
  if (arg)
 
1224
    table->setWriteSet(field_index);
 
1225
  else
 
1226
    assert(0); // Not completed
 
1227
}