~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/loader.cc

  • Committer: Brian Aker
  • Date: 2011-01-24 00:14:21 UTC
  • mfrom: (2081.4.1 clean)
  • Revision ID: brian@tangent.org-20110124001421-eys9bolq0zng6fs2
Merge in trunk of bootstrap treee.

Show diffs side-by-side

added added

removed removed

Lines of Context:
397
397
  return false;
398
398
}
399
399
 
 
400
/*
 
401
  Window of opportunity for plugins to issue any queries with the database up and running but with no user's connected.
 
402
*/
 
403
void plugin_startup_window(module::Registry &registry, drizzled::Session &session)
 
404
{
 
405
  BOOST_FOREACH(plugin::Plugin::map::value_type value, registry.getPluginsMap())
 
406
  {
 
407
    value.second->startup(session);
 
408
  }
 
409
}
 
410
 
400
411
class PrunePlugin :
401
412
  public unary_function<string, bool>
402
413
{