Added QUERY_TYPE_GLOBAL_WRITE for writes which don't reflect on binary log, but need to be present in every back-end server once executed.
This commit is contained in:
@ -33,7 +33,8 @@ typedef enum {
|
||||
QUERY_TYPE_LOCAL_READ, /*!< Read non-database data, execute in MaxScale */
|
||||
QUERY_TYPE_READ, /*!< No updates */
|
||||
QUERY_TYPE_WRITE, /*!< Master data will be modified */
|
||||
QUERY_TYPE_SESSION_WRITE /*!< Session data will be modified */
|
||||
QUERY_TYPE_SESSION_WRITE,/*!< Session data will be modified */
|
||||
QUERY_TYPE_GLOBAL_WRITE /*!< Global system variable modification */
|
||||
} skygw_query_type_t;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user