~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/alter_info.cc

  • Committer: Lee Bieber
  • Date: 2011-03-18 04:10:25 UTC
  • mfrom: (2241.1.2 build)
  • Revision ID: kalebral@gmail.com-20110318041025-1xoj1azy6zobhnbm
Merge Stewart - refactoring of default values
Merge Olaf - more refactoring

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
#include <config.h>
26
26
#include <drizzled/alter_info.h>
27
 
#include <drizzled/alter_drop.h>
28
27
#include <drizzled/alter_column.h>
29
28
#include <drizzled/key.h>
30
29
#include <drizzled/create_field.h>
34
33
 
35
34
AlterInfo::AlterInfo() :
36
35
  flags(),
37
 
  keys_onoff(LEAVE_AS_IS),
38
 
  tablespace_op(NO_TABLESPACE_OP),
39
36
  no_parts(0),
40
 
  build_method(HA_BUILD_DEFAULT),
41
37
  error_if_not_empty(false)
42
38
{}
43
39