We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b32ec74 commit 567dd1cCopy full SHA for 567dd1c
tc_mysql_module.c
@@ -11,6 +11,7 @@
11
#define MAX_USER_INFO 4096
12
#define ENCRYPT_LEN 16
13
#define SEED_323_LENGTH 8
14
+#define TC_LARGE_POOL_SIZE (3 * TC_PLUGIN_POOL_SIZE)
15
16
typedef struct {
17
uint32_t sec_auth_checked:1;
@@ -44,7 +45,7 @@ static int
44
45
init_mysql_module()
46
{
47
- ctx.pool = tc_create_pool(TC_PLUGIN_POOL_SIZE * 3, 0, 0);
48
+ ctx.pool = tc_create_pool(TC_LARGE_POOL_SIZE, TC_PLUGIN_POOL_SUB_SIZE, 0);
49
50
if (ctx.pool) {
51
0 commit comments