~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/crc32/crc32udf.cc

  • Committer: Brian Aker
  • Date: 2010-01-12 21:04:27 UTC
  • mfrom: (1259.6.3 hash_algorithm)
  • Revision ID: brian@gaz-20100112210427-ynafptc9b1jnv4d3
Merge Joe

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include "config.h"
21
21
#include <drizzled/plugin/function.h>
22
22
#include <drizzled/item/func.h>
23
 
#include <drizzled/hash/crc32.h>
 
23
#include <drizzled/algorithm/crc32.h>
24
24
 
25
25
#include <string>
26
26
 
66
66
  }
67
67
 
68
68
  null_value= false;
69
 
  return static_cast<int64_t>(drizzled::hash::crc32(res->ptr(), res->length()));
 
69
  return static_cast<int64_t>(drizzled::algorithm::crc32(res->ptr(), res->length()));
70
70
}
71
71
 
72
72
plugin::Create_function<Crc32Function> *crc32udf= NULL;