1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix semisync master/slave status always showed as OFF on sparc

On sparc, semisync master/slave status is always showed as OFF, this
is fixed by change rpl_semisync_master/slave_status variables from
long to char.
This commit is contained in:
He Zhenxing
2009-10-03 13:00:05 +08:00
parent 04c6e8ff07
commit d8b4e637a0
4 changed files with 4 additions and 4 deletions

View File

@ -94,6 +94,6 @@ private:
/* System and status variables for the slave component */
extern char rpl_semi_sync_slave_enabled;
extern unsigned long rpl_semi_sync_slave_trace_level;
extern unsigned long rpl_semi_sync_slave_status;
extern char rpl_semi_sync_slave_status;
#endif /* SEMISYNC_SLAVE_H */