~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Mark Atwood
  • Date: 2011-06-14 06:10:57 UTC
  • mfrom: (2318.2.19 rf)
  • Revision ID: me@mark.atwood.name-20110614061057-u08az4cidd4l7blm
mergeĀ lp:~olafvdspek/drizzle/refactor4

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
  {
45
45
  }
46
46
 
47
 
  virtual bool sendFields(List<Item> *list)
 
47
  virtual void sendFields(List<Item>& list)
48
48
  {
49
 
    List<Item>::iterator it(list->begin());
 
49
    List<Item>::iterator it(list.begin());
50
50
 
51
51
    column= 0;
52
52
    max_column= 0;
59
59
    }
60
60
    _result_set->setColumnCount(max_column);
61
61
    _result_set->createRow();
62
 
 
63
 
    return false;
64
62
  }
65
63
 
66
64
  virtual void sendError(drizzled::error_t error_code, const char *error_message)