~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/function_engine/function.h

  • Committer: Eric Day
  • Date: 2010-03-25 19:28:37 UTC
  • mfrom: (1405 staging)
  • mto: This revision was merged to the branch mainline in revision 1409.
  • Revision ID: eday@oddments.org-20100325192837-4exmacbrywjovsqp
Merged trunk, rsolved conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
  bool doDoesTableExist(drizzled::Session& session, drizzled::TableIdentifier &identifier);
86
86
 
87
87
  bool doGetSchemaDefinition(const std::string &schema_name, drizzled::message::Schema &schema_message);
 
88
 
 
89
  int doRenameTable(drizzled::Session&, drizzled::TableIdentifier &, drizzled::TableIdentifier &)
 
90
  {
 
91
    return EPERM;
 
92
  }
88
93
};
89
94
 
90
95
#endif /* PLUGIN_FUNCTION_ENGINE_FUNCTION_H */