diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2006-03-27 02:59:55 +0000 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2006-03-27 02:59:55 +0000 |
commit | 82376269fd9f58d650d48743b1a01f1db38162c2 (patch) | |
tree | a9aedd44b98c22e181405f10ed921b888d5151dc | |
parent | 0b02327267c774f7465cc84998ade8f1cafe11dd (diff) | |
download | php-git-82376269fd9f58d650d48743b1a01f1db38162c2.tar.gz |
remove pg_execute() E_WARNING error when query plan is not defined
-rw-r--r-- | ext/pgsql/pgsql.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 60cd217757..34d34f4449 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -1520,7 +1520,6 @@ PHP_FUNCTION(pg_execute) case PGRES_BAD_RESPONSE: case PGRES_NONFATAL_ERROR: case PGRES_FATAL_ERROR: - PHP_PQ_ERROR("Query failed: %s", pgsql); PQclear(pgsql_result); RETURN_FALSE; break; |