~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin.h

  • Committer: lbieber
  • Date: 2010-09-22 03:57:16 UTC
  • mfrom: (1783.1.3 build)
  • Revision ID: lbieber@orisndriz08-20100922035716-9r10weyqvpxfn633
Merge Monty - fix processing of configuration files
Merge Brian - Pushes up thread ownership to the modules that create them.
Merge Monty - fix bug 643814 - add links for drizzle7 changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
typedef drizzle_lex_string LEX_STRING;
47
47
struct option;
48
48
 
49
 
extern char *opt_plugin_add;
50
 
extern char *opt_plugin_remove;
51
 
extern char *opt_plugin_load;
52
49
extern char *opt_plugin_dir_ptr;
53
50
extern char opt_plugin_dir[FN_REFLEN];
54
51
 
389
386
int session_sql_command(const Session *session);
390
387
enum_tx_isolation session_tx_isolation(const Session *session);
391
388
 
 
389
void compose_plugin_add(std::vector<std::string> options);
 
390
void compose_plugin_remove(std::vector<std::string> options);
 
391
void notify_plugin_load(std::string in_plugin_load);
392
392
 
393
393
 
394
394
/**