~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/alter_table.h

  • Committer: Joe Daly
  • Date: 2010-03-08 04:23:54 UTC
  • mto: This revision was merged to the branch mainline in revision 1380.
  • Revision ID: skinny.moey@gmail.com-20100308042354-7k0jibdqaxkhac7o
scoreboardĀ implementationĀ forĀ statistics

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) :
43
 
    CreateTable(in_session)
44
 
  { 
45
 
  }
 
42
  AlterTable(Session *in_session)
 
43
    :
 
44
      CreateTable(in_session)
 
45
  { }
46
46
 
47
47
  bool execute();
48
48
};
50
50
} /* namespace statement */
51
51
 
52
52
 
53
 
bool alter_table(Session *session,
54
 
                 drizzled::TableIdentifier &original_table_identifier,
55
 
                 drizzled::TableIdentifier &new_table_identifier,
 
53
bool alter_table(Session *session, char *new_db, char *new_name,
56
54
                 HA_CREATE_INFO *create_info,
57
 
                 const message::Table &original_proto,
58
 
                 message::Table &create_proto,
 
55
                 message::Table *create_proto,
59
56
                 TableList *table_list,
60
57
                 AlterInfo *alter_info,
61
 
                 uint32_t order_num, Order *order, bool ignore);
 
58
                 uint32_t order_num, order_st *order, bool ignore);
62
59
 
63
60
} /* namespace drizzled */
64
61
#endif /* DRIZZLED_STATEMENT_ALTER_TABLE_H */