~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/key_part_spec.h

  • Committer: Brian Aker
  • Date: 2011-07-25 14:24:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2373.
  • Revision ID: brian@tangent.org-20110725142419-3vobv9u6k7jp4qej
Remove the typedef on lexkey

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)