~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/slave.h

  • Committer: Patrick Galbraith
  • Date: 2008-07-24 16:57:40 UTC
  • mto: (202.2.4 rename-mysql-to-drizzle)
  • mto: This revision was merged to the branch mainline in revision 212.
  • Revision ID: patg@ishvara-20080724165740-x58yw6zs6d9o17lf
Most everything working with client rename
mysqlslap test still fails... can't connect to the server

Show diffs side-by-side

added added

removed removed

Lines of Context:
146
146
int32_t init_slave();
147
147
void init_slave_skip_errors(const char* arg);
148
148
bool flush_relay_log_info(Relay_log_info* rli);
149
 
int32_t register_slave_on_master(MYSQL* mysql);
 
149
int32_t register_slave_on_master(DRIZZLE *drizzle);
150
150
int32_t terminate_slave_threads(Master_info* mi, int32_t thread_mask,
151
151
                             bool skip_lock = 0);
152
152
int32_t start_slave_threads(bool need_slave_mutex, bool wait_for_start,
172
172
 
173
173
/* retrieve table from master and copy to slave*/
174
174
int32_t fetch_master_table(THD* thd, const char* db_name, const char* table_name,
175
 
                       Master_info* mi, MYSQL* mysql, bool overwrite);
 
175
                       Master_info* mi, DRIZZLE *drizzle, bool overwrite);
176
176
 
177
177
bool show_master_info(THD* thd, Master_info* mi);
178
178
bool show_binlog_info(THD* thd);