~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_yacc.yy

  • Committer: Brian Aker
  • Date: 2008-07-22 18:31:32 UTC
  • Revision ID: brian@tangent.org-20080722183132-ne2ntl7g7mdf2eez
uint32 -> uin32_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
3894
3894
        | BIT_XOR  '(' in_sum_expr ')'
3895
3895
          { $$=new Item_sum_xor($3); }
3896
3896
        | COUNT_SYM '(' opt_all '*' ')'
3897
 
          { $$=new Item_sum_count(new Item_int((int32) 0L,1)); }
 
3897
          { $$=new Item_sum_count(new Item_int((int32_t) 0L,1)); }
3898
3898
        | COUNT_SYM '(' in_sum_expr ')'
3899
3899
          { $$=new Item_sum_count($3); }
3900
3900
        | COUNT_SYM '(' DISTINCT
6752
6752
            lex->var_list.push_back(new set_var(lex->option_type,
6753
6753
                                                find_sys_var(YYTHD, "tx_isolation"),
6754
6754
                                                &null_lex_str,
6755
 
                                                new Item_int((int32) $5)));
 
6755
                                                new Item_int((int32_t) $5)));
6756
6756
          }
6757
6757
        ;
6758
6758