~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/client/concurrent.h

updating

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
 
125
125
    for (Tokenizer::iterator iter= tok.begin(); iter != tok.end(); ++iter)
126
126
    {
127
 
      byte.resize((*iter).size() +1); // +1 for the COM_QUERY
 
127
      byte.resize(iter->size() +1); // +1 for the COM_QUERY
128
128
      byte[0]= COM_QUERY;
129
 
      memcpy(&byte[1], (*iter).c_str(), (*iter).size());
 
129
      memcpy(&byte[1], iter->c_str(), iter->size());
130
130
      to_execute.push(byte);
131
131
    }
132
132