~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/alter_info.cc

Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
  datetime_field(NULL),
39
39
  error_if_not_empty(false)
40
40
{}
41
 
 
42
 
void AlterInfo::reset()
43
 
{
44
 
  drop_list.empty();
45
 
  alter_list.empty();
46
 
  key_list.empty();
47
 
  create_list.empty();
48
 
  flags.reset();
49
 
  keys_onoff= LEAVE_AS_IS;
50
 
  tablespace_op= NO_TABLESPACE_OP;
51
 
  no_parts= 0;
52
 
  build_method= HA_BUILD_DEFAULT;
53
 
  datetime_field= 0;
54
 
  error_if_not_empty= false;
55
 
}