~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/handler.cc

  • Committer: Brian Aker
  • Date: 2008-07-09 07:05:02 UTC
  • Revision ID: brian@tangent.org-20080709070502-33a3vehqeuy2e1op
Removed unwanted ALTER TABLESPACE, left in valuable bits.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1897
1897
  return (table && table->in_use) ? table->in_use : current_thd;
1898
1898
}
1899
1899
 
1900
 
 
1901
 
/**
1902
 
   Get tablespace name from handler 
1903
 
   Returns the tablespace name associated
1904
 
   with the table or NULL if not defined
1905
 
*/
1906
 
const 
1907
 
char* handler::get_tablespace_name()
1908
 
{
1909
 
  return table->s->tablespace;
1910
 
}
1911
 
 
1912
1900
/**
1913
1901
  Open database-handler.
1914
1902