~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_yacc.yy

  • Committer: Brian Aker
  • Date: 2008-07-05 19:24:24 UTC
  • mfrom: (53.2.8 codestyle)
  • Revision ID: brian@tangent.org-20080705192424-3uslywtteymm7xqy
First pass of removing BIT_TYPE

Show diffs side-by-side

added added

removed removed

Lines of Context:
1861
1861
        | BIT_SYM
1862
1862
          {
1863
1863
            Lex->length= (char*) "1";
1864
 
            $$=MYSQL_TYPE_BIT;
1865
 
          }
1866
 
        | BIT_SYM '(' NUM ')'
1867
 
          {
1868
 
            Lex->length= $3.str;
1869
 
            $$=MYSQL_TYPE_BIT;
 
1864
            $$=FIELD_TYPE_TINY;
1870
1865
          }
1871
1866
        | BOOL_SYM
1872
1867
          {