~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/information_engine/information_engine.h

Quick pass through ha_create in doTableCreate() to turn it into a reference.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
  int doCreateTable(Session *,
76
76
                    const char *,
77
77
                    Table&,
78
 
                    HA_CREATE_INFO *,
 
78
                    HA_CREATE_INFO&,
79
79
                    drizzled::message::Table&)
80
80
  {
81
81
    return 1;
91
91
  }
92
92
 
93
93
  int createTableImplementation(Session*, const char *, Table *,
94
 
                                HA_CREATE_INFO *, drizzled::message::Table*);
 
94
                                HA_CREATE_INFO&, drizzled::message::Table*);
95
95
 
96
96
  int deleteTableImplementation(Session*, const string table_name); 
97
97