~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_share.h

  • Committer: Brian Aker
  • Date: 2009-10-30 15:58:06 UTC
  • mfrom: (1183.1.30 merge)
  • Revision ID: brian@gaz-20091030155806-bq7mu2f5ljtodn0h
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
 
116
116
  inline const char *getComment()
117
117
  {
118
 
    return (table_proto) ?  table_proto->options().comment().c_str() : NULL; 
 
118
    return (table_proto && table_proto->has_options()) ?  table_proto->options().comment().c_str() : NULL; 
119
119
  }
120
120
 
121
121
  inline uint32_t getCommentLength()