~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_yacc.yy

Merge Brian - Adds random_number, random_string, and a counter table to DD.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2928
2928
        | literal
2929
2929
        | variable
2930
2930
        | sum_expr
 
2931
          {
 
2932
            Lex->setSumExprUsed();
 
2933
          }
2931
2934
        | '+' simple_expr %prec NEG { $$= $2; }
2932
2935
        | '-' simple_expr %prec NEG
2933
2936
          { $$= new (YYSession->mem_root) Item_func_neg($2); }