~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/client.h

  • Committer: Brian Aker
  • Date: 2010-12-31 02:23:39 UTC
  • mto: (2054.1.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2049.
  • Revision ID: brian@tangent.org-20101231022339-g07ztt32wdwqdz46
Make it so that tables are sent not as raw but actual drop table commands to
the replication system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
  virtual bool store(int64_t from)= 0;
128
128
  virtual bool store(uint64_t from)= 0;
129
129
  virtual bool store(double from, uint32_t decimals, String *buffer)= 0;
130
 
  virtual bool store(const DRIZZLE_TIME *from);
 
130
  virtual bool store(const type::Time *from);
131
131
  virtual bool store(const char *from);
132
132
  virtual bool store(const char *from, size_t length)= 0;
133
133
  virtual bool store(const std::string &from)