Change binlog router to indicate it does not use router sessions via the getCapabilities interface.
This commit is contained in:
@ -30,6 +30,7 @@
|
||||
* 15/07/2013 Massimiliano Pinto Added clientReply entry point
|
||||
* 16/07/2013 Massimiliano Pinto Added router commands values
|
||||
* 22/10/2013 Massimiliano Pinto Added router errorReply entry point
|
||||
* 27/10/2015 Martin Brampton Add RCAP_TYPE_NO_RSESSION
|
||||
*
|
||||
*/
|
||||
#include <service.h>
|
||||
@ -100,8 +101,9 @@ typedef struct router_object {
|
||||
*/
|
||||
typedef enum router_capability_t {
|
||||
RCAP_TYPE_UNDEFINED = 0x00,
|
||||
RCAP_TYPE_STMT_INPUT = 0x01, /*< statement per buffer */
|
||||
RCAP_TYPE_PACKET_INPUT = 0x02 /*< data as it was read from DCB */
|
||||
RCAP_TYPE_STMT_INPUT = 0x01, /*< statement per buffer */
|
||||
RCAP_TYPE_PACKET_INPUT = 0x02, /*< data as it was read from DCB */
|
||||
RCAP_TYPE_NO_RSESSION = 0x04 /*< router does not use router sessions */
|
||||
} router_capability_t;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user