~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/string_functions/functions.cc

  • Committer: Monty Taylor
  • Date: 2010-09-26 21:24:15 UTC
  • mto: (1796.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1797.
  • Revision ID: mordred@inaugust.com-20100926212415-5fn3p3q75pgiei7r
Moved protocol doc into the docs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include "config.h"
23
23
#include "plugin/string_functions/functions.h"
24
24
 
 
25
#include "elt.h"
 
26
#include "format.h"
 
27
#include "quote.h"
 
28
 
25
29
using namespace drizzled;
26
30
 
27
31
static int init(drizzled::module::Context &context)
29
33
  context.add(new plugin::Create_function<Item_func_elt>("elt"));
30
34
  context.add(new plugin::Create_function<Item_func_format>("format"));
31
35
  context.add(new plugin::Create_function<Item_func_quote>("quote"));
32
 
  context.add(new plugin::Create_function<drizzled::string_functions::Regex>("regex"));
33
36
 
34
37
  return 0;
35
38
}