~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/alter_info.cc

  • Committer: Monty Taylor
  • Date: 2009-12-04 20:51:25 UTC
  • mfrom: (1237.2.9 push)
  • mto: (1238.1.6 push)
  • mto: This revision was merged to the branch mainline in revision 1240.
  • Revision ID: mordred@inaugust.com-20091204205125-7s6a0l0v5vqzvalo
MergedĀ build.

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
 
}