~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/null_client.h

updating

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
 
116
116
    for (Tokenizer::iterator iter= tok.begin(); iter != tok.end(); ++iter)
117
117
    {
118
 
      byte.resize((*iter).size() +1); // +1 for the COM_QUERY
 
118
      byte.resize(iter->size() +1); // +1 for the COM_QUERY
119
119
      byte[0]= COM_QUERY;
120
 
      memcpy(&byte[1], (*iter).c_str(), (*iter).size());
 
120
      memcpy(&byte[1], iter->c_str(), iter->size());
121
121
      to_execute.push(byte);
122
122
    }
123
123
  }