mirror of
https://github.com/MariaDB/server.git
synced 2025-06-12 01:53:02 +03:00
MDEV-8450: PATCH] Wrong macro expansion in Query_cache::send_result_to_client()
Expression in macro protected by ()
This commit is contained in:
@ -79,8 +79,8 @@ extern unsigned int mariadb_deinitialize_ssl;
|
||||
extern unsigned int mysql_port;
|
||||
extern char *mysql_unix_port;
|
||||
|
||||
#define CLIENT_NET_READ_TIMEOUT 365*24*3600 /* Timeout on read */
|
||||
#define CLIENT_NET_WRITE_TIMEOUT 365*24*3600 /* Timeout on write */
|
||||
#define CLIENT_NET_READ_TIMEOUT (365*24*3600) /* Timeout on read */
|
||||
#define CLIENT_NET_WRITE_TIMEOUT (365*24*3600) /* Timeout on write */
|
||||
|
||||
#define IS_PRI_KEY(n) ((n) & PRI_KEY_FLAG)
|
||||
#define IS_NOT_NULL(n) ((n) & NOT_NULL_FLAG)
|
||||
|
Reference in New Issue
Block a user