~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/session_dictionary/dictionary.cc

  • Committer: Monty Taylor
  • Date: 2010-10-08 17:32:00 UTC
  • mto: This revision was merged to the branch mainline in revision 1833.
  • Revision ID: mordred@inaugust.com-20101008173200-iq22jo2nic48noa3
Updated pandora-build files to version 0.157

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
using namespace drizzled;
25
25
 
 
26
static ProcesslistTool *processlist;
 
27
 
26
28
static int init(drizzled::module::Context &context)
27
29
{
28
 
  context.add(new ProcesslistTool);
29
 
  context.add(new session_dictionary::Variables);
30
 
  context.add(new session_dictionary::Savepoints);
 
30
  processlist= new(std::nothrow)ProcesslistTool;
 
31
  context.add(processlist);
31
32
  
32
33
  return 0;
33
34
}
36
37
{
37
38
  DRIZZLE_VERSION_ID,
38
39
  "session_dictionary",
39
 
  "1.1",
 
40
  "1.0",
40
41
  "Brian Aker",
41
 
  "Dictionary for session information, aka proccesslist, user defined variables, etc.",
 
42
  "Dictionary for session information, aka proccesslist, etc.",
42
43
  PLUGIN_LICENSE_GPL,
43
44
  init,
44
45
  NULL,