~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/null_client.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:
88
88
  virtual void sendOK(void) {}
89
89
  virtual void sendEOF(void) {}
90
90
  virtual void sendError(const drizzled::error_t, const char*) {}
91
 
  virtual bool sendFields(List<Item>*) { return false; }
 
91
  virtual void sendFields(List<Item>&) {}
92
92
  virtual void store(Field *) {}
93
93
  virtual void store(void) {}
94
94
  virtual void store(int32_t) {}
100
100
  virtual void store(const char*) {}
101
101
  virtual void store(const char*, size_t) {}
102
102
  virtual void store(const std::string &) {}
103
 
  virtual bool haveMoreData(void) { return false;}
104
103
  virtual bool haveError(void) { return false; }
105
104
  virtual bool wasAborted(void) { return false; }
106
105