~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/info_schema/info_schema_methods.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:
110
110
};
111
111
 
112
112
/**
 
113
 * @class ModulesISMethods
 
114
 * @brief
 
115
 *   Class which implements any methods that the MODULES
 
116
 *   I_S table needs besides the default methods
 
117
 */
 
118
class ModulesISMethods : public drizzled::plugin::InfoSchemaMethods
 
119
{
 
120
public:
 
121
  virtual int fillTable(Session *session,
 
122
                        TableList *tables,
 
123
                        COND *cond);
 
124
};
 
125
 
 
126
/**
113
127
 * @class PluginsISMethods
114
128
 * @brief
115
129
 *   Class which implements any methods that the PLUGINS