~jaypipes/drizzle/new-test-runner

« back to all changes in this revision

Viewing changes to drizzled/protocol.h

  • Committer: Jay Pipes
  • Date: 2008-12-11 17:52:34 UTC
  • mfrom: (482.16.152 testable)
  • Revision ID: jpipes@serialcoder-20081211175234-uqsfvmgxejvmellq
merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
  virtual bool store_int64_t(int64_t from, bool unsigned_flag)=0;
86
86
  virtual bool store_decimal(const my_decimal * dec_value)=0;
87
87
  virtual bool store(const char *from, size_t length, const CHARSET_INFO * const cs)=0;
88
 
  virtual bool store(const char *from, size_t length, 
 
88
  virtual bool store(const char *from, size_t length,
89
89
                     const CHARSET_INFO * const fromcs, const CHARSET_INFO * const tocs)=0;
90
90
  virtual bool store(float from, uint32_t decimals, String *buffer)=0;
91
91
  virtual bool store(double from, uint32_t decimals, String *buffer)=0;