diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2002-02-12 10:01:08 +0000 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2002-02-12 10:01:08 +0000 |
commit | c1507e1e40f8de576698d01ce062d6fc17490acc (patch) | |
tree | d3e441ba4ab84d134559a14e8be66a63f2cfc0b4 /ext/pgsql/pgsql.c | |
parent | 260aee10fed14e3649a10077359bf59c468506bf (diff) | |
download | php-git-c1507e1e40f8de576698d01ce062d6fc17490acc.tar.gz |
Initialize automatic persistent connection reset flag
Diffstat (limited to 'ext/pgsql/pgsql.c')
-rw-r--r-- | ext/pgsql/pgsql.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 1db41aea6a..4ed4046844 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -302,6 +302,7 @@ static void php_pgsql_init_globals(php_pgsql_globals *pgsql_globals_p TSRMLS_DC) { PGG(num_persistent) = 0; PGG(ignore_notices) = 0; + PGG(auto_reset_persistent) = 0; } /* }}} */ |