~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_share.h

  • Committer: Brian Aker
  • Date: 2010-10-15 01:23:36 UTC
  • mfrom: (1835.1.7 staging)
  • Revision ID: brian@tangent.org-20101015012336-8w5lox9kj0hkv0a1
MergeĀ inĀ mutable/execute

Show diffs side-by-side

added added

removed removed

Lines of Context:
251
251
private:
252
252
  std::vector<unsigned char> default_values;            /* row with default values */
253
253
public:
254
 
  unsigned char * getDefaultValues()
 
254
  // @note This needs to be made to be const in the future
 
255
  unsigned char *getDefaultValues()
255
256
  {
256
257
    return &default_values[0];
257
258
  }