~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/info_schema/info_schema_columns.h

Added code necessary for building plugins dynamically.
Merged in changes from lifeless to allow autoreconf to work.
Touching plugin.ini files now triggers a rebuid - so config/autorun.sh is no
longer required to be run after touching those.
Removed the duplicate plugin names - also removed the issue that getting them
different would silently fail weirdly later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
bool createPluginsColumns(std::vector<const drizzled::plugin::ColumnInfo *>& cols);
95
95
 
96
96
/**
 
97
 * Create the various columns for the MODULES
 
98
 * I_S table and add them to the std::vector of columns for the
 
99
 * table.
 
100
 *
 
101
 * @param[out] cols vector to add columns to
 
102
 * @return false on success; true on failure
 
103
 */
 
104
bool createModulesColumns(std::vector<const drizzled::plugin::ColumnInfo *>& cols);
 
105
 
 
106
/**
97
107
 * Create the various volumns for the PROCESSLIST I_S table and add them
98
108
 * to the std::vector of columns for the PROCESSLIST table.
99
109
 *