~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-06-29 16:05:47 UTC
  • mto: This revision was merged to the branch mainline in revision 1081.
  • Revision ID: osullivan.padraig@gmail.com-20090629160547-0c2ktadq91vx6id0
Extracted the PLUGINS table into the I_S plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
bool createKeyColUsageColumns(std::vector<const ColumnInfo *>& cols);
63
63
 
64
64
/**
 
65
 * Create the various columns for the PLUGINS
 
66
 * I_S table and add them to the std::vector of columns for the
 
67
 * table.
 
68
 *
 
69
 * @param[out] cols vector to add columns to
 
70
 * @return false on success; true on failure
 
71
 */
 
72
bool createPluginsColumns(std::vector<const ColumnInfo *>& cols);
 
73
 
 
74
/**
65
75
 * Create the various volumns for the PROCESSLIST I_S table and add them
66
76
 * to the std::vector of columns for the PROCESSLIST table.
67
77
 *