~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/key_part_spec.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:
27
27
 
28
28
class Key_part_spec :public memory::SqlAlloc {
29
29
public:
30
 
  LEX_STRING field_name;
 
30
  lex_string_t field_name;
31
31
  uint32_t length;
32
 
  Key_part_spec(const LEX_STRING &name, uint32_t len)
 
32
  Key_part_spec(const lex_string_t &name, uint32_t len)
33
33
    : field_name(name), length(len)
34
34
  {}
35
35
  Key_part_spec(const char *name, const size_t name_len, uint32_t len)