~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table/instance/base.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:
259
259
private:
260
260
  identifier::Table::Key private_key_for_cache; // This will not exist in the final design.
261
261
  std::vector<char> private_normalized_path; // This will not exist in the final design.
262
 
  LEX_STRING db;                        /* Pointer to db */
263
 
  LEX_STRING table_name;                /* Table name (for open) */
264
 
  LEX_STRING path;      /* Path to table (from datadir) */
265
 
  LEX_STRING normalized_path;           /* unpack_filename(path) */
 
262
  lex_string_t db;                        /* Pointer to db */
 
263
  lex_string_t table_name;                /* Table name (for open) */
 
264
  lex_string_t path;    /* Path to table (from datadir) */
 
265
  lex_string_t normalized_path;         /* unpack_filename(path) */
266
266
 
267
267
public:
268
268