~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/info_schema.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-07-07 04:47:22 UTC
  • mto: (1093.1.25 captain)
  • mto: This revision was merged to the branch mainline in revision 1099.
  • Revision ID: osullivan.padraig@gmail.com-20090707044722-aw24vt40yd4857v9
Removing a constructor in the InfoSchemaTable class that is no longer needed
after extracting all the I_S tables into the plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
  typedef std::vector<const ColumnInfo *> Columns;
212
212
  
213
213
  InfoSchemaTable(const std::string& tab_name,
214
 
                  ColumnInfo *in_column_info,
215
 
                  int32_t idx_col1,
216
 
                  int32_t idx_col2,
217
 
                  bool in_hidden,
218
 
                  bool in_opt_possible,
219
 
                  uint32_t req_object,
220
 
                  InfoSchemaMethods *in_methods)
221
 
    :
222
 
      table_name(tab_name),
223
 
      hidden(in_hidden),
224
 
      is_opt_possible(in_opt_possible),
225
 
      first_column_index(idx_col1),
226
 
      second_column_index(idx_col2),
227
 
      requested_object(req_object),
228
 
      column_info(),
229
 
      i_s_methods(in_methods)
230
 
  {
231
 
    setColumnInfo(in_column_info);
232
 
  }
233
 
 
234
 
  InfoSchemaTable(const std::string& tab_name,
235
214
                  Columns& in_column_info,
236
215
                  int idx_col1,
237
216
                  int idx_col2,