~jaypipes/drizzle/split-xa-resource-manager

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: Jay Pipes
  • Date: 2010-02-15 20:29:01 UTC
  • Revision ID: jpipes@serialcoder-20100215202901-wop97sx1fi61mhvq
fix for include.am having non-existent transaction_context.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
715
715
/*
716
716
  Return value is "if parsed"
717
717
*/
718
 
bool plugin::StorageEngine::getSchemaDefinition(const std::string &schema_name, message::Schema &proto)
 
718
bool StorageEngine::getSchemaDefinition(const std::string &schema_name, message::Schema &proto)
719
719
{
720
720
  int ret;
721
721
 
733
733
  return ret == 0 ? true : false;
734
734
}
735
735
 
736
 
void plugin::StorageEngine::getTableNames(const string& db, set<string>& set_of_names)
 
736
void StorageEngine::getTableNames(const string& db, set<string>& set_of_names)
737
737
{
738
738
  char tmp_path[FN_REFLEN];
739
739