~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_yacc.yy

  • Committer: Brian Aker
  • Date: 2011-02-27 02:10:05 UTC
  • mto: This revision was merged to the branch mainline in revision 2204.
  • Revision ID: brian@tangent.org-20110227021005-02fb3304yhyt1hiv
Remove caller convert to std::string (ie we were going back and forth in
creation).

Show diffs side-by-side

added added

removed removed

Lines of Context:
3009
3009
function_call_generic:
3010
3010
          IDENT_sys '('
3011
3011
          {
3012
 
            const plugin::Function *udf= plugin::Function::get($1.str, $1.length);
 
3012
            const plugin::Function *udf= plugin::Function::get(std::string($1.str, $1.length));
3013
3013
 
3014
3014
            /* Temporary placing the result of getFunction in $3 */
3015
3015
            $<udf>$= udf;