~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/slave/queue_producer.h

  • Committer: Mark Atwood
  • Date: 2011-11-30 07:06:47 UTC
  • mfrom: (2463.1.6 drizzle-include)
  • Revision ID: me@mark.atwood.name-20111130070647-ixp7oalp70hkbt6l
mergeĀ lp:~brianaker/drizzle/libdrizzle-2.0-not-install

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    _check_interval(5),
39
39
    _master_port(3306),
40
40
    _master_id(0),
 
41
    _drizzle(NULL),
41
42
    _last_return(DRIZZLE_RETURN_OK),
42
43
    _is_connected(false),
43
44
    _saved_max_commit_id(0),
123
124
 
124
125
  uint32_t _master_id;
125
126
 
126
 
  drizzle_st _drizzle;
127
 
  drizzle_con_st _connection;
 
127
  drizzle_st *_drizzle;
 
128
  drizzle_con_st *_connection;
128
129
  drizzle_return_t _last_return;
129
130
 
130
131
  bool _is_connected;