~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2010-12-25 04:38:28 UTC
  • mto: This revision was merged to the branch mainline in revision 2031.
  • Revision ID: brian@tangent.org-20101225043828-fz83ma79dvqaxvri
Update for moving DRIZZLE_TIME to type::Time

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
  virtual bool store(int64_t) { return false; }
102
102
  virtual bool store(uint64_t) { return false; }
103
103
  virtual bool store(double, uint32_t, String*) { return false; }
104
 
  virtual bool store(const DRIZZLE_TIME*) { return false; }
 
104
  virtual bool store(const type::Time*) { return false; }
105
105
  virtual bool store(const char*) { return false; }
106
106
  virtual bool store(const char*, size_t) { return false; }
107
107
  virtual bool store(const std::string &) { return false; }