Fix wrong minimum configuration value for client_idle_limit_in_recovery.
authorTatsuo Ishii <ishii@postgresql.org>
Thu, 24 Nov 2016 01:16:51 +0000 (10:16 +0900)
committerTatsuo Ishii <ishii@postgresql.org>
Thu, 24 Nov 2016 01:27:07 +0000 (10:27 +0900)
Per bug #264.

src/config/pool_config_variables.c

index 21a5793171148f0e362d76eb3ba7408fb33588fa..04b0206ad02827c7b90d96af2ca5986caa14af96 100644 (file)
@@ -1415,7 +1415,7 @@ static struct config_int ConfigureNamesInt[] =
                },
                &g_pool_config.client_idle_limit_in_recovery,
                0,
-               0,INT_MAX,
+               -1,INT_MAX,
                NULL, NULL, NULL
        },