~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_yacc.yy

  • Committer: Brian Aker
  • Date: 2009-03-20 18:52:05 UTC
  • mfrom: (950.1.1 mordred)
  • Revision ID: brian@tangent.org-20090320185205-g7o6kq17r25b6odf
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
353
353
  String *string;
354
354
  Key_part_spec *key_part;
355
355
  TableList *table_list;
356
 
  udf_func *udf;
 
356
  Function_builder *udf;
357
357
  LEX_USER *lex_user;
358
358
  struct sys_var_with_base variable;
359
359
  enum enum_var_type var_type;
3320
3320
function_call_generic:
3321
3321
          IDENT_sys '('
3322
3322
          {
3323
 
            udf_func *udf= 0;
 
3323
            Function_builder *udf= 0;
3324
3324
            udf= find_udf($1.str, $1.length);
3325
3325
 
3326
3326
            /* Temporary placing the result of find_udf in $3 */
3349
3349
            else
3350
3350
            {
3351
3351
              /* Retrieving the result of find_udf */
3352
 
              udf_func *udf= $<udf>3;
 
3352
              Function_builder *udf= $<udf>3;
3353
3353
              if (udf)
3354
3354
              {
3355
3355
                item= Create_udf_func::s_singleton.create(session, udf, $4);