~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/ha_archive.cc

  • 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:
148
148
  }
149
149
 
150
150
  int createTableImpl(Session *session, const char *table_name,
151
 
                      Table *table_arg, HA_CREATE_INFO *create_info);
 
151
                      Table *table_arg, HA_CREATE_INFO *create_info,
 
152
                      drizzled::message::Table* proto);
152
153
};
153
154
 
154
155
static ArchiveEngine *archive_engine= NULL;
508
509
 
509
510
int ArchiveEngine::createTableImpl(Session *session, const char *table_name,
510
511
                                   Table *table_arg,
511
 
                                   HA_CREATE_INFO *create_info)
 
512
                                   HA_CREATE_INFO *create_info,
 
513
                                   drizzled::message::Table *)
512
514
{
513
515
  char name_buff[FN_REFLEN];
514
516
  char linkname[FN_REFLEN];