~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/alter_info.h

  • Committer: Stewart Smith
  • Date: 2011-02-28 02:07:11 UTC
  • mto: (2241.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2242.
  • Revision ID: stewart@flamingspork.com-20110228020711-bc1s0tsvbg4ynfwy
switch DISCARD/IMPORT TABLESPACE to only use the alter table protobuf message

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
  ALTER_FOREIGN_KEY
66
66
};
67
67
 
68
 
enum tablespace_op_type
69
 
{
70
 
  NO_TABLESPACE_OP,
71
 
  DISCARD_TABLESPACE,
72
 
  IMPORT_TABLESPACE
73
 
};
74
 
 
75
68
/**
76
69
 * Contains information about the parsed CREATE or ALTER TABLE statement.
77
70
 *
88
81
  message::AddedFields added_fields_proto;
89
82
  std::bitset<32> flags;
90
83
  enum enum_enable_or_disable keys_onoff;
91
 
  enum tablespace_op_type tablespace_op;
92
84
  uint32_t no_parts;
93
85
  enum ha_build_method build_method;
94
86
  bool error_if_not_empty;