master_id and node_id are long vars

master_id and node_id are long vars
This commit is contained in:
MassimilianoPinto
2014-06-27 14:21:12 +02:00
parent 96b6454e13
commit 111693775b
2 changed files with 12 additions and 12 deletions

View File

@ -71,7 +71,7 @@ typedef struct server {
long node_id; /**< Node id, server_id for M/S or local_index for Galera */
int rlag; /**< Replication Lag for Master / Slave replication */
unsigned long node_ts; /**< Last timestamp set from M/S monitor module */
int master_id; /**< Master server id of this node */
long master_id; /**< Master server id of this node */
int depth; /**< Replication level in the tree */
long *slaves; /**< Slaves of this node */
} SERVER;