~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/substr_functions/substr_functions.cc

Cleaned up name of calls around datachunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
258
258
plugin::Create_function<SubstrFunction> *substr_function= NULL;
259
259
plugin::Create_function<SubstrIndexFunction> *substr_index_function= NULL;
260
260
 
261
 
static int initialize(drizzled::plugin::Context &context)
 
261
static int initialize(drizzled::module::Context &context)
262
262
{
263
263
  substr_function= new plugin::Create_function<SubstrFunction>("substr");
264
264
  substr_index_function= new plugin::Create_function<SubstrIndexFunction>("substring_index");