~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Mark Atwood
  • Date: 2011-08-12 04:08:33 UTC
  • mfrom: (2385.2.17 refactor5)
  • Revision ID: me@mark.atwood.name-20110812040833-u6j85nc6ahuc0dtz
mergeĀ lp:~olafvdspek/drizzle/refactor5

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
  virtual void store(const type::Time*) {}
102
102
  virtual void store(const char*) {}
103
103
  virtual void store(const char*, size_t) {}
104
 
  virtual void store(const std::string &) {}
 
104
  virtual void store(str_ref) {}
105
105
  virtual bool haveError(void) { return false; }
106
106
  virtual bool wasAborted(void) { return false; }
107
107
 
108
 
  void pushSQL(const std::string &arg)
 
108
  void pushSQL(str_ref arg)
109
109
  {
110
110
    ::drizzled::error_t err_msg;
111
111
    ::drizzled::execute::Context context(arg.data(), arg.size(), err_msg);