~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-13 17:44:18 UTC
  • mto: This revision was merged to the branch mainline in revision 1709.
  • Revision ID: brian@tangent.org-20100813174418-pq2wr6r6f2okx3gb
Remove myisam_data_pointer_siz

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");