~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_class.h

  • Committer: Monty Taylor
  • Date: 2008-10-22 21:18:04 UTC
  • Revision ID: monty@inaugust.com-20081022211804-0pkmwgc7mfebo5ld
Cleaned up the last commit. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <drizzled/global.h>
24
24
#include "log.h"
25
25
#include "rpl_tblmap.h"
 
26
#include <libdrizzle/password.h>     // rand_struct
26
27
 
27
28
class Relay_log_info;
28
29
 
98
99
 
99
100
class Key_part_spec :public Sql_alloc {
100
101
public:
101
 
  const LEX_STRING field_name;
 
102
  LEX_STRING field_name;
102
103
  uint32_t length;
103
104
  Key_part_spec(const LEX_STRING &name, uint32_t len)
104
105
    : field_name(name), length(len)