~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/alter_table.h

  • Committer: Stewart Smith
  • Date: 2011-01-14 05:09:22 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114050922-7pouw3ppg609lgcd
add note about what uuid lib we use

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
class AlterTable : public CreateTable
40
40
{
41
41
public:
42
 
  AlterTable(Session *in_session, Table_ident *ident, drizzled::ha_build_method build_arg);
 
42
  AlterTable(Session *in_session) :
 
43
    CreateTable(in_session)
 
44
  { 
 
45
  }
43
46
 
44
47
  virtual bool is_alter() const
45
48
  {
53
56
 
54
57
 
55
58
bool alter_table(Session *session,
56
 
                 drizzled::identifier::Table &original_table_identifier,
57
 
                 drizzled::identifier::Table &new_table_identifier,
 
59
                 drizzled::TableIdentifier &original_table_identifier,
 
60
                 drizzled::TableIdentifier &new_table_identifier,
58
61
                 HA_CREATE_INFO *create_info,
59
62
                 const message::Table &original_proto,
60
63
                 message::Table &create_proto,