From: Yasuo Ohgaki Date: Sun, 7 Apr 2002 06:11:41 +0000 (+0000) Subject: Added pgsql.ignore_notice and pgsql.log_notice ini entry. X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~831 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efbb9949a5a4835161f54feef45c38a6fe3b9c76;p=php Added pgsql.ignore_notice and pgsql.log_notice ini entry. --- diff --git a/php.ini-dist b/php.ini-dist index 8ef2ede726..a61c4627db 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -623,6 +623,13 @@ pgsql.max_persistent = -1 ; Maximum number of links (persistent+non persistent). -1 means no limit. pgsql.max_links = -1 +; Ignore PostgreSQL backends Notice message or not. +pgsql.ignore_notice = 0 + +; Log PostgreSQL backends Noitce message or not. +; Unless pgsql.ignore_notice=0, module cannot log notice message. +pgsql.log_notice = 0 + [Sybase] ; Allow or prevent persistent links. sybase.allow_persistent = On diff --git a/php.ini-recommended b/php.ini-recommended index 628232f8f6..a0db94d676 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -619,7 +619,8 @@ msql.max_links = -1 ; Allow or prevent persistent links. pgsql.allow_persistent = On -; Detect broken persistent links always with pg_pconnect(). Need a little overhead. +; Detect broken persistent links always with pg_pconnect(). +; Auto reset feature requires a little overheads. pgsql.auto_reset_persistent = Off ; Maximum number of persistent links. -1 means no limit. @@ -628,6 +629,14 @@ pgsql.max_persistent = -1 ; Maximum number of links (persistent+non persistent). -1 means no limit. pgsql.max_links = -1 +; Ignore PostgreSQL backends Notice message or not. +; Notice message logging require a little overheads. +pgsql.ignore_notice = 0 + +; Log PostgreSQL backends Noitce message or not. +; Unless pgsql.ignore_notice=0, module cannot log notice message. +pgsql.log_notice = 0 + [Sybase] ; Allow or prevent persistent links. sybase.allow_persistent = On