~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/null_client.h

  • Committer: Brian Aker
  • Date: 2009-12-03 01:17:53 UTC
  • mto: (1237.3.2 push)
  • mto: This revision was merged to the branch mainline in revision 1238.
  • Revision ID: brian@gaz-20091203011753-159h2no5m5c5dt9b
Small cleanups, did in MERGE table only engine flag.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
  virtual bool store(const DRIZZLE_TIME*) { return false; }
56
56
  virtual bool store(const char*) { return false; }
57
57
  virtual bool store(const char*, size_t) { return false; }
58
 
  virtual bool store(const std::string &) { return false; }
59
58
  virtual bool haveMoreData(void) { return false; }
60
59
  virtual bool haveError(void) { return false; }
61
60
  virtual bool wasAborted(void) { return false; }
62
61
};
63
62
 
64
 
} /* namespace plugin */
65
 
} /* namespace drizzled */
 
63
} /* end namespace drizzled::plugin */
 
64
} /* end namespace drizzled */
66
65
 
67
66
#endif /* DRIZZLED_PLUGIN_NULL_CLIENT_H */