~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table/concurrent.cc

  • Committer: Brian Aker
  • Date: 2011-01-17 04:15:23 UTC
  • mto: (2088.1.3 merge)
  • mto: This revision was merged to the branch mainline in revision 2089.
  • Revision ID: brian@gir-3-20110117041523-o9ex94kfz1a6iqyw
Modify TableIdentifier to fit with the rest of the identifiers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
  if (session->getKilled())
69
69
    return true;
70
70
 
71
 
  TableIdentifier identifier(table_list->getSchemaName(), table_list->getTableName());
 
71
  identifier::Table identifier(table_list->getSchemaName(), table_list->getTableName());
72
72
  if (open_unireg_entry(session, table_list->getTableName(), identifier))
73
73
  {
74
74
    intern_close_table();
121
121
 
122
122
int table::Concurrent::open_unireg_entry(Session *session,
123
123
                                         const char *alias,
124
 
                                         TableIdentifier &identifier)
 
124
                                         identifier::Table &identifier)
125
125
{
126
126
  int error;
127
127
  TableShare::shared_ptr share;