~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/loader.cc

Merge in Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
static void unlock_variables(Session *session, drizzle_system_variables *vars);
142
142
static void cleanup_variables(drizzle_system_variables *vars);
143
143
 
144
 
/* declared in set_var.cc */
145
 
extern sys_var *intern_find_sys_var(const char *str, uint32_t length, bool no_error);
146
 
 
147
144
 
148
145
/****************************************************************************
149
146
  Plugin support code
500
497
****************************************************************************/
501
498
 
502
499
 
503
 
sys_var *find_sys_var(const char *str, uint32_t length)
504
 
{
505
 
  return intern_find_sys_var(str, length, false);
506
 
}
507
 
 
508
500
 
509
501
void plugin_sessionvar_init(Session *session)
510
502
{