~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/ha_heap.cc

  • Committer: Brian Aker
  • Date: 2010-09-09 18:27:05 UTC
  • mto: (1756.1.2 build) (1768.2.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1757.
  • Revision ID: brian@tangent.org-20100909182705-pnzlmg2yuz2o5wdt
Remove table name from ha_open (we modified this a while ago to just use
identifier)

Show diffs side-by-side

added added

removed removed

Lines of Context:
246
246
                             table->getShare()->getTableName(),
247
247
                             table->getShare()->getPath());
248
248
 
249
 
  if (new_handler && !new_handler->ha_open(identifier, table, file->getShare()->name.c_str(), table->db_stat,
 
249
  if (new_handler && !new_handler->ha_open(identifier, table, table->db_stat,
250
250
                                           HA_OPEN_IGNORE_IF_LOCKED))
251
251
    return new_handler;
252
252
  return NULL;