~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.cc

Reverted changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
852
852
  this will not be called for every request. Any sort of positions
853
853
  that need to be reset should be kept in the ::extra() call.
854
854
*/
855
 
int ha_tina::open(const char *name, int, uint32_t)
 
855
int ha_tina::doOpen(const TableIdentifier &identifier, int , uint32_t )
856
856
{
857
 
  if (!(share= get_share(name)))
 
857
  if (!(share= get_share(identifier.getPath().c_str())))
858
858
    return(ENOENT);
859
859
 
860
860
  if (share->crashed)
882
882
  return(0);
883
883
}
884
884
 
885
 
 
886
885
/*
887
886
  Close a database file. We remove ourselves from the shared strucutre.
888
887
  If it is empty we destroy it.