1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#ifndef _MYSQL_SCHEMA_EDITOR_H_
#define _MYSQL_SCHEMA_EDITOR_H_
#include "grtdb/editor_schema.h"
#include "grts/structs.workbench.physical.h"
#include "grts/structs.db.mysql.h"
#include "grt/grt_manager.h"
#include "mysql_support_backend_public_interface.h"
class MYSQLWBMYSQLSUPPORTBACKEND_PUBLIC_FUNC MySQLSchemaEditorBE : public bec::SchemaEditorBE
{
public:
void refactor_catalog_upon_schema_rename(const std::string &old_name, const std::string &new_name);
MySQLSchemaEditorBE(bec::GRTManager *grtm, const db_SchemaRef &schema, const db_mgmt_RdbmsRef &rdbms);
};
#endif /* _MYSQL_SCHEMA_EDITOR_H_ */
|