~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.h

  • Committer: Stewart Smith
  • Date: 2009-09-22 09:36:37 UTC
  • mfrom: (1128 staging)
  • mto: This revision was merged to the branch mainline in revision 1145.
  • Revision ID: stewart@flamingspork.com-20090922093637-44bvw0i4fe0job1m
merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
 
71
71
class LEX;
72
72
class Select_Lex;
73
 
class Alter_info;
 
73
class AlterInfo;
74
74
class select_result;
75
75
class CreateField;
76
76
class sys_var_str;
898
898
bool mysql_create_table(Session *session,const char *db, const char *table_name,
899
899
                        HA_CREATE_INFO *create_info,
900
900
                        drizzled::message::Table *table_proto,
901
 
                        Alter_info *alter_info,
 
901
                        AlterInfo *alter_info,
902
902
                        bool tmp_table, uint32_t select_field_count);
903
903
bool mysql_create_table_no_lock(Session *session, const char *db,
904
904
                                const char *table_name,
905
905
                                HA_CREATE_INFO *create_info,
906
906
                                drizzled::message::Table *table_proto,
907
 
                                Alter_info *alter_info,
 
907
                                AlterInfo *alter_info,
908
908
                                bool tmp_table, uint32_t select_field_count);
909
909
 
910
910
bool mysql_recreate_table(Session *session, TableList *table_list);