~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/structs.h

  • Committer: Mark Atwood
  • Date: 2011-10-14 15:59:08 UTC
  • mfrom: (2430.1.12 refactor3a)
  • Revision ID: me@mark.atwood.name-20111014155908-whqmrmaf2grpsg5c
mergeĀ lp:~olafvdspek/drizzle/refactor3

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
  unsigned int usable_key_parts;        /* Should normally be = key_parts */
70
70
  uint32_t  block_size;
71
71
  KeyPartInfo *key_part;
72
 
  const char* name;                             /* Name of key */
 
72
  char  *name;                          /* Name of key */
73
73
  /*
74
74
    Array of AVG(#records with the same field value) for 1st ... Nth key part.
75
75
    0 means 'not known'.
77
77
  */
78
78
  ulong *rec_per_key;
79
79
  Table *table;
80
 
  str_ref comment;
 
80
  lex_string_t comment;
81
81
};
82
82
 
83
83