diff options
author | Nirbhay Choubey <nirbhay@mariadb.com> | 2016-06-01 13:15:38 -0400 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@mariadb.com> | 2016-06-01 13:15:38 -0400 |
commit | 23fed784048624cb147efdc0e54287c13cdcf12c (patch) | |
tree | 51c07d2141675bb74fcbf71c2448ba5ab1a45af3 /sql/wsrep_sst.h | |
parent | d6d40112110e05f62122e90f209f05f273c7e6dc (diff) | |
download | mariadb-git-23fed784048624cb147efdc0e54287c13cdcf12c.tar.gz |
MDEV-6368: assertion xid_seqno > trx_sys_cur_xid_seqno (postfix)
- Fix build failure when built without wsrep (Win)
- Update the expected warning in sys_vars.wsrep_start_position
Diffstat (limited to 'sql/wsrep_sst.h')
-rw-r--r-- | sql/wsrep_sst.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/wsrep_sst.h b/sql/wsrep_sst.h index d465f897985..512da060599 100644 --- a/sql/wsrep_sst.h +++ b/sql/wsrep_sst.h @@ -75,7 +75,7 @@ extern void wsrep_SE_initialized(); /*! mark SE initialization complete */ #define wsrep_SE_initialized() do { } while(0) #define wsrep_SE_init_grab() do { } while(0) #define wsrep_SE_init_done() do { } while(0) -#define wsrep_sst_continue() do { } while(0) +#define wsrep_sst_continue() (0) #endif /* WITH_WSREP */ #endif /* WSREP_SST_H */ |