~posulliv/drizzle/memcached_applier

« back to all changes in this revision

Viewing changes to drizzled/sql_udf.cc

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
                               bool )
33
33
{
34
34
  udf_func *udf= (udf_func*) buff;
35
 
  *length= (uint) udf->name.length;
 
35
  *length= (uint32_t) udf->name.length;
36
36
  return (unsigned char*) udf->name.str;
37
37
}
38
38