mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +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:
@ -142,7 +142,7 @@
|
||||
*/
|
||||
#define STACK_MIN_SIZE 16000 // Abort if less stack during eval.
|
||||
|
||||
#define STACK_MIN_SIZE_FOR_OPEN 1024*80
|
||||
#define STACK_MIN_SIZE_FOR_OPEN (1024*80)
|
||||
#define STACK_BUFF_ALLOC 352 ///< For stack overrun checks
|
||||
#ifndef MYSQLD_NET_RETRY_COUNT
|
||||
#define MYSQLD_NET_RETRY_COUNT 10 ///< Abort read after this many int.
|
||||
@ -238,7 +238,7 @@
|
||||
#define DEFAULT_CONCURRENCY 10
|
||||
#define DELAYED_LIMIT 100 /**< pause after xxx inserts */
|
||||
#define DELAYED_QUEUE_SIZE 1000
|
||||
#define DELAYED_WAIT_TIMEOUT 5*60 /**< Wait for delayed insert */
|
||||
#define DELAYED_WAIT_TIMEOUT (5*60) /**< Wait for delayed insert */
|
||||
#define MAX_CONNECT_ERRORS 100 ///< errors before disabling host
|
||||
|
||||
#define LONG_TIMEOUT ((ulong) 3600L*24L*365L)
|
||||
|
Reference in New Issue
Block a user