~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/string_functions/functions.cc

  • Committer: Lee Bieber
  • Date: 2010-12-09 06:12:10 UTC
  • mfrom: (1976.7.4 real-trunk)
  • Revision ID: kalebral@gmail.com-20101209061210-hbre9gj1m12x0pl5
Merge Brian - Allow EXECUTE() to work with SELECT as well as stand alone.

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
 
 
29
25
using namespace drizzled;
30
26
 
31
27
static int init(drizzled::module::Context &context)
33
29
  context.add(new plugin::Create_function<Item_func_elt>("elt"));
34
30
  context.add(new plugin::Create_function<Item_func_format>("format"));
35
31
  context.add(new plugin::Create_function<Item_func_quote>("quote"));
 
32
  context.add(new plugin::Create_function<drizzled::string_functions::Regex>("regex"));
36
33
 
37
34
  return 0;
38
35
}