~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.h

  • Committer: Stewart Smith
  • Date: 2009-06-25 05:49:42 UTC
  • mto: (1089.11.1 basic-discovery)
  • mto: This revision was merged to the branch mainline in revision 1102.
  • Revision ID: stewart@flamingspork.com-20090625054942-xr1p83d2q1i1q0fo
start passing down table proto to createTable. This enables future code cleanup, including fixing ARCHIVE embedding table definition and table proto in parser

Show diffs side-by-side

added added

removed removed

Lines of Context:
937
937
int ha_create_table(Session *session, const char *path,
938
938
                    const char *db, const char *table_name,
939
939
                    HA_CREATE_INFO *create_info,
940
 
                    bool update_create_info);
 
940
                    bool update_create_info,
 
941
                    drizzled::message::Table *table_proto);
941
942
int ha_delete_table(Session *session, const char *path,
942
943
                    const char *db, const char *alias, bool generate_warning);
943
944