~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_identifier.h

  • Committer: Brian Aker
  • Date: 2010-03-23 23:08:36 UTC
  • Revision ID: brian@gaz-20100323230836-p97twveqkt007r1j
Large reord in ALTER TABLE for RENAME.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
    type(TEMP_TABLE),
88
88
    path(path_arg),
89
89
    db(path_arg),
90
 
    table_name(path_arg),
91
 
    sql_path(db)
92
 
  { 
 
90
    table_name(path_arg)
 
91
  { 
 
92
    sql_path.append("temporary");
 
93
    sql_path.append(".");
 
94
    sql_path.append(table_name);
 
95
  }
 
96
 
 
97
  TableIdentifier(const char *schema_name_arg, const char *table_name_arg, const char *path_arg ) :
 
98
    type(TEMP_TABLE),
 
99
    path(path_arg),
 
100
    db(schema_name_arg),
 
101
    table_name(table_name_arg)
 
102
  { 
 
103
    sql_path.append("temporary");
93
104
    sql_path.append(".");
94
105
    sql_path.append(table_name);
95
106
  }