~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/info_schema/info_schema_columns.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-11-18 02:35:54 UTC
  • mto: This revision was merged to the branch mainline in revision 1223.
  • Revision ID: osullivan.padraig@gmail.com-20091118023554-zeeszorythdyhiyt
Split the table constraints I_S table into its own header and implementation
files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
bool createStatusColumns(std::vector<const drizzled::plugin::ColumnInfo *>& cols);
45
45
 
46
46
/**
47
 
 * Create the various volumns for the TABLE_CONSTRAINTS I_S table 
48
 
 * and add them to the std::vector of columns for this table.
49
 
 *
50
 
 * @param[out] cols vector to add columns to
51
 
 * @return false on success; true on failure
52
 
 */
53
 
bool createTabConstraintsColumns(std::vector<const drizzled::plugin::ColumnInfo *>& cols);
54
 
 
55
 
/**
56
47
 * Create the various volumns for the TABLE_NAMES I_S table 
57
48
 * and add them to the std::vector of columns for this table.
58
49
 *