~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/structs.h

  • Committer: Brian Aker
  • Date: 2010-05-15 01:19:45 UTC
  • Revision ID: brian@gaz-20100515011945-uxhf94vi0tzm0vq6
Rename of KEY to KeyInfo

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
};
63
63
 
64
64
 
65
 
typedef struct st_key {
 
65
struct KeyInfo {
66
66
  unsigned int  key_length;             /* Tot length of key */
67
67
  enum  ha_key_alg algorithm;
68
68
  unsigned long flags;                  /* dupp key and pack flags */
80
80
  ulong *rec_per_key;
81
81
  Table *table;
82
82
  LEX_STRING comment;
83
 
} KEY;
 
83
};
84
84
 
85
85
 
86
86
class JoinTable;