~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-07-01 02:01:37 UTC
  • mto: This revision was merged to the branch mainline in revision 1084.
  • Revision ID: osullivan.padraig@gmail.com-20090701020137-j6x95t1nuvq20kzk
Extracted the SCHEMATA table into the I_S plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
bool createRefConstraintColumns(std::vector<const ColumnInfo *>& cols);
113
113
 
114
114
/**
 
115
 * Create the various volumns for the SCHEMATA I_S table 
 
116
 * and add them to the std::vector of columns for this table.
 
117
 *
 
118
 * @param[out] cols vector to add columns to
 
119
 * @return false on success; true on failure
 
120
 */
 
121
bool createSchemataColumns(std::vector<const ColumnInfo *>& cols);
 
122
 
 
123
/**
115
124
 * Create the various volumns for the TABLE_CONSTRAINTS I_S table 
116
125
 * and add them to the std::vector of columns for this table.
117
126
 *