~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/mysql_protocol.cc

  • Committer: Lee Bieber
  • Date: 2011-02-20 02:08:06 UTC
  • mfrom: (2183.2.3 list)
  • Revision ID: kalebral@gmail.com-20110220020806-ad95ldlm2rfahrrr
Merge Olaf - change List_iterator_fast to List<Item>::iterator

Show diffs side-by-side

added added

removed removed

Lines of Context:
476
476
*/
477
477
bool ClientMySQLProtocol::sendFields(List<Item> *list)
478
478
{
479
 
  List_iterator_fast<Item> it(*list);
 
479
  List<Item>::iterator it(*list);
480
480
  Item *item;
481
481
  unsigned char buff[80];
482
482
  String tmp((char*) buff,sizeof(buff),&my_charset_bin);