~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/execute.cc

  • Committer: Brian Aker
  • Date: 2011-07-25 14:24:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2373.
  • Revision ID: brian@tangent.org-20110725142419-3vobv9u6k7jp4qej
Remove the typedef on lexkey

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
 
59
59
    if (var && var->length && var->value && var->type == STRING_RESULT)
60
60
    {
61
 
      LEX_STRING tmp_for_var;
 
61
      lex_string_t tmp_for_var;
62
62
      tmp_for_var.str= var->value; 
63
63
      tmp_for_var.length= var->length; 
64
64
      to_execute.set(tmp_for_var);