~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table/instance.cc

merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
232
232
{
233
233
  uint32_t field_count= getShare()->sizeFields();
234
234
 
235
 
  this->def_read_set.resize(field_count);
236
 
  this->def_write_set.resize(field_count);
237
 
  this->tmp_set.resize(field_count);
238
 
  this->getMutableShare()->all_set.resize(field_count);
239
 
  this->getMutableShare()->all_set.set();
240
 
  this->def_write_set.set();
241
 
  this->def_read_set.set();
 
235
  def_read_set.resize(field_count);
 
236
  def_write_set.resize(field_count);
 
237
  tmp_set.resize(field_count);
 
238
  getMutableShare()->all_set.resize(field_count);
 
239
  getMutableShare()->all_set.set();
 
240
  def_write_set.set();
 
241
  def_read_set.set();
242
242
  default_column_bitmaps();
243
243
}
244
244
 
 
245
Instance::~Instance()
 
246
{
 
247
  free_tmp_table(in_use);
 
248
}
 
249
 
245
250
 
246
251
} /* namespace table */
247
252
} /* namespace drizzled */