~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/key.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-04 08:13:04 UTC
  • mfrom: (2384 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2385.
  • Revision ID: olafvdspek@gmail.com-20110804081304-rlejjpvoos17bjdf
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
  Keytype type;
39
39
  KEY_CREATE_INFO key_create_info;
40
40
  List<Key_part_spec> columns;
41
 
  LEX_STRING name;
 
41
  lex_string_t name;
42
42
  bool generated;
43
43
 
44
44
  Key(Keytype type_par,
45
 
      const LEX_STRING &name_arg,
 
45
      const lex_string_t &name_arg,
46
46
      KEY_CREATE_INFO *key_info_arg,
47
47
      bool generated_arg, List<Key_part_spec> &cols) :
48
48
    type(type_par),