~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/protocol.h

  • Committer: Brian Aker
  • Date: 2009-04-28 18:35:06 UTC
  • mfrom: (997.1.1 drizzle)
  • Revision ID: brian@gaz-20090428183506-xhp4vyhuz8c9z2qs
MergeĀ 

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
  virtual bool store(const DRIZZLE_TIME *from)= 0;
84
84
  virtual bool store(const char *from, const CHARSET_INFO * const cs)
85
85
  {
86
 
    if (from == NULL)
87
 
      store();
 
86
    if (from == NULL) 
 
87
      return store();
88
88
    return store(from, strlen(from), cs);
89
89
  }
90
90
  virtual bool store(const char *from, size_t length,