~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.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:
132
132
  }
133
133
 
134
134
  int createTableImpl(Session *, const char *table_name, Table *table_arg,
135
 
                      HA_CREATE_INFO *);
 
135
                      HA_CREATE_INFO *, drizzled::message::Table*);
136
136
 
137
137
};
138
138
 
1458
1458
*/
1459
1459
 
1460
1460
int Tina::createTableImpl(Session *, const char *table_name, Table *table_arg,
1461
 
                          HA_CREATE_INFO *)
 
1461
                          HA_CREATE_INFO *, drizzled::message::Table*)
1462
1462
{
1463
1463
  char name_buff[FN_REFLEN];
1464
1464
  File create_file;