php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #42340 pg_trace does not work
Submitted: 2007-08-19 10:32 UTC Modified: 2008-01-02 11:54 UTC
From: yuw@php.net Assigned:
Status: Wont fix Package: PostgreSQL related
PHP Version: 4.4.7 OS: Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: yuw@php.net
New email:
PHP Version: OS:

 

 [2007-08-19 10:32 UTC] yuw@php.net
Description:
------------
pg_trace does not work.

PHP:4.4.7
PostgreSQL: 8.2.4


Reproduce code:
---------------
$ createdb testdb
$ psql -d testdb
testdb=> create table test_tbl (id serial, val text);

<?php
$dbconn = pg_connect("dbname=testdb");
pg_trace("/tmp/pg_trace.log","w",$dbconn);
$sql = "insert into test_tbl (val) values ('aaaaaaaaaaa')";
$result = pg_query($dbconn, $sql);
var_dump(pg_affected_rows($result));
?>



Expected result:
----------------
something trace information in /tmp/pg_trace.log


Actual result:
--------------
$ cat /tmp/pg_trace.log
$ (empty)



Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-01-02 11:54 UTC] hholzgra@php.net
Works in PHP 5.x, won't fix in 4.x as this as now reached "end of life"
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 11:01:30 2024 UTC