~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/crc32/crc32udf.cc

  • Committer: Siddharth Prakash Singh
  • Date: 2010-03-29 22:01:35 UTC
  • mto: This revision was merged to the branch mainline in revision 1432.
  • Revision ID: spsneo@spsneo-laptop-20100329220135-ear9ygsp9q88xhcw
code refactoring - removing the type when calling crc32

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
  }
67
67
 
68
68
  null_value= false;
69
 
  return static_cast<int64_t>(drizzled::algorithm::crc32<char *>(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;