MySQL handshake has a configurable version_string
MySQL handshake has no a configurable version_string parameter in service section. The default value is the server version of the embedded mysqld library. Set option example: version_string=5.5.37-MariaDB-log Default is similar to: 5.5.35-MariaDB
This commit is contained in:
@ -24,8 +24,9 @@
|
||||
* @verbatim
|
||||
* Revision History
|
||||
*
|
||||
* Date Who Description
|
||||
* 21/06/13 Mark Riddoch Initial implementation
|
||||
* Date Who Description
|
||||
* 21/06/13 Mark Riddoch Initial implementation
|
||||
* 07/05/14 Massimiliano Pinto Added version_string to global configuration
|
||||
*
|
||||
* @endverbatim
|
||||
*/
|
||||
@ -54,7 +55,8 @@ typedef struct config_context {
|
||||
* The gateway global configuration data
|
||||
*/
|
||||
typedef struct {
|
||||
int n_threads; /**< Number of polling threads */
|
||||
int n_threads; /**< Number of polling threads */
|
||||
char *version_string; /**< The version string of embedded database library */
|
||||
} GATEWAY_CONF;
|
||||
|
||||
extern int config_load(char *);
|
||||
|
Reference in New Issue
Block a user