mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Temporary commit of 10.0-merge
This commit is contained in:
@ -67,7 +67,7 @@
|
||||
#define PSEUDO_TABLE_BITS (PARAM_TABLE_BIT | OUTER_REF_TABLE_BIT | \
|
||||
RAND_TABLE_BIT)
|
||||
#define MAX_FIELDS 4096 /* Limit in the .frm file */
|
||||
#define MAX_PARTITIONS 1024
|
||||
#define MAX_PARTITIONS 8192
|
||||
|
||||
#define MAX_SELECT_NESTING (sizeof(nesting_map)*8-1)
|
||||
|
||||
@ -128,6 +128,13 @@
|
||||
*/
|
||||
#define TABLE_DEF_CACHE_MIN 400
|
||||
|
||||
/**
|
||||
Maximum number of connections default value.
|
||||
151 is larger than Apache's default max children,
|
||||
to avoid "too many connections" error in a common setup.
|
||||
*/
|
||||
#define MAX_CONNECTIONS_DEFAULT 151
|
||||
|
||||
/*
|
||||
Stack reservation.
|
||||
Feel free to raise this by the smallest amount you can to get the
|
||||
@ -232,7 +239,7 @@
|
||||
#define DELAYED_LIMIT 100 /**< pause after xxx inserts */
|
||||
#define DELAYED_QUEUE_SIZE 1000
|
||||
#define DELAYED_WAIT_TIMEOUT 5*60 /**< Wait for delayed insert */
|
||||
#define MAX_CONNECT_ERRORS 10 ///< errors before disabling host
|
||||
#define MAX_CONNECT_ERRORS 100 ///< errors before disabling host
|
||||
|
||||
#define LONG_TIMEOUT ((ulong) 3600L*24L*365L)
|
||||
|
||||
|
Reference in New Issue
Block a user