~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_yacc.yy

  • Committer: Brian Aker
  • Date: 2010-02-16 02:38:07 UTC
  • mfrom: (1273.13.67 build)
  • Revision ID: brian@gaz-20100216023807-of9gfkzrjg1i6q4p
Merge of dead yacc bits.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4208
4208
        | FLOAT_NUM     { int error; $$= (uint64_t) internal::my_strtoll10($1.str, (char**) 0, &error); }
4209
4209
        ;
4210
4210
 
4211
 
dec_num_error:
4212
 
          dec_num
4213
 
          { my_parse_error(ER(ER_ONLY_INTEGERS_ALLOWED)); }
4214
 
        ;
4215
 
 
4216
 
dec_num:
4217
 
          DECIMAL_NUM
4218
 
        | FLOAT_NUM
4219
 
        ;
4220
 
 
4221
4211
select_var_list_init:
4222
4212
          {
4223
4213
            LEX *lex=Lex;