~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_yacc.yy

  • Committer: Monty Taylor
  • Date: 2008-07-15 21:40:58 UTC
  • mfrom: (77.1.113 codestyle32)
  • mto: This revision was merged to the branch mainline in revision 176.
  • Revision ID: mordred@camelot-20080715214058-rm3phulldos9xehv
Merged from codestyle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
542
542
%token  FIRST_SYM                     /* SQL-2003-N */
543
543
%token  FIXED_SYM
544
544
%token  FLOAT_NUM
545
 
%token  FLOAT_SYM                     /* SQL-2003-R */
546
545
%token  FLUSH_SYM
547
546
%token  FORCE_SYM
548
547
%token  FOREIGN                       /* SQL-2003-R */
1809
1808
type:
1810
1809
          int_type opt_len field_options { $$=$1; }
1811
1810
        | real_type opt_precision field_options { $$=$1; }
1812
 
        | FLOAT_SYM float_options field_options { $$=MYSQL_TYPE_FLOAT; }
1813
1811
        | BIT_SYM
1814
1812
          {
1815
1813
            Lex->length= (char*) "1";