~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_yacc.yy

  • Committer: Brian Aker
  • Date: 2009-02-20 22:48:37 UTC
  • Revision ID: brian@tangent.org-20090220224837-fw5wrf46n4ru3e6a
First pass of stripping uint

Show diffs side-by-side

added added

removed removed

Lines of Context:
1703
1703
              my_error(ER_OUTOFMEMORY, MYF(0), sizeof(virtual_column_info));
1704
1704
              DRIZZLE_YYABORT;
1705
1705
            }
1706
 
            uint expr_len= (uint)($3 - $1) - 1;
 
1706
            uint32_t expr_len= (uint)($3 - $1) - 1;
1707
1707
            Lex->vcol_info->expr_str.str= (char* ) sql_memdup($1 + 1, expr_len);
1708
1708
            Lex->vcol_info->expr_str.length= expr_len;
1709
1709
            Lex->vcol_info->expr_item= $2;