~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/hex_functions/hex_functions.cc

  • Committer: Monty Taylor
  • Date: 2010-04-22 02:46:23 UTC
  • mto: (1497.3.4 enable-dtrace)
  • mto: This revision was merged to the branch mainline in revision 1527.
  • Revision ID: mordred@inaugust.com-20100422024623-4urw8fi8eraci08p
Don't overwrite the pandora_vc_revinfo file if we don't have new
authoratative information.

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::module::Context &context)
 
168
static int initialize(drizzled::plugin::Context &context)
169
169
{
170
170
  hex_function= new plugin::Create_function<HexFunction>("hex");
171
171
  unhex_function= new plugin::Create_function<UnHexFunction>("unhex");