~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/hex_functions/hex_functions.cc

  • Committer: Brian Aker
  • Date: 2010-08-18 16:12:58 UTC
  • mto: This revision was merged to the branch mainline in revision 1720.
  • Revision ID: brian@tangent.org-20100818161258-1vm71da888dfvwsx
Remove the code surrounding stack trace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
plugin::Create_function<HexFunction> *hex_function= NULL;
166
166
plugin::Create_function<UnHexFunction> *unhex_function= NULL;
167
167
 
168
 
static int initialize(drizzled::plugin::Context &context)
 
168
static int initialize(drizzled::module::Context &context)
169
169
{
170
170
  hex_function= new plugin::Create_function<HexFunction>("hex");
171
171
  unhex_function= new plugin::Create_function<UnHexFunction>("unhex");