~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/rpl_mi.h

  • Committer: Monty Taylor
  • Date: 2008-10-12 21:19:33 UTC
  • mfrom: (499.1.7 codestyle)
  • mto: This revision was merged to the branch mainline in revision 511.
  • Revision ID: monty@inaugust.com-20081012211933-w67dro6ftrjdxw5f
Merged in first pass of sql_bitmap removal. (and some other cleanups.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
{
64
64
private:
65
65
  drizzle::MasterList list;
66
 
  string info_filename;
67
 
  string log_name;
 
66
  std::string info_filename;
 
67
  std::string log_name;
68
68
  uint16_t port;
69
69
  uint64_t log_pos;
70
70
 
71
71
public:
72
72
 
73
73
  /* the variables below are needed because we can change masters on the fly */
74
 
  string host;
75
 
  string user;
76
 
  string password;
 
74
  std::string host;
 
75
  std::string user;
 
76
  std::string password;
77
77
  uint32_t connect_retry;
78
78
  THD *io_thd;
79
79
  Master_info();