~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/create.cc

  • Committer: Olaf van der Spek
  • Date: 2011-02-28 14:09:50 UTC
  • mfrom: (2207 bootstrap)
  • mto: (2209.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2210.
  • Revision ID: olafvdspek@gmail.com-20110228140950-2nu0hyzhuww3wssx
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1070
1070
Item*
1071
1071
Create_udf_func::create(Session *session, LEX_STRING name, List<Item> *item_list)
1072
1072
{
1073
 
  const plugin::Function *udf= plugin::Function::get(name.str, name.length);
 
1073
  const plugin::Function *udf= plugin::Function::get(std::string(name.str, name.length));
1074
1074
  assert(udf);
1075
1075
  return create(session, udf, item_list);
1076
1076
}