~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_ident.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:
33
33
class Table_ident :public memory::SqlAlloc
34
34
{
35
35
public:
36
 
  LEX_STRING db;
37
 
  LEX_STRING table;
 
36
  lex_string_t db;
 
37
  lex_string_t table;
38
38
  Select_Lex_Unit *sel;
39
 
  inline Table_ident(LEX_STRING db_arg, LEX_STRING table_arg)
 
39
  inline Table_ident(lex_string_t db_arg, lex_string_t table_arg)
40
40
    :table(table_arg), sel((Select_Lex_Unit *)0)
41
41
  {
42
42
    db= db_arg;
43
43
  }
44
 
  explicit Table_ident(LEX_STRING table_arg)
 
44
  explicit Table_ident(lex_string_t table_arg)
45
45
    :table(table_arg), sel((Select_Lex_Unit *)0)
46
46
  {
47
47
    db.str=0;