From: | Volkan YAZICI <volkan(dot)yazici(at)gmail(dot)com> |
---|---|
To: | pgsql-php(at)postgresql(dot)org |
Subject: | Fwd: Bug #32774: stdin handling confusion in COPY |
Date: | 2005-05-01 14:12:04 |
Message-ID: | 7104a7370505010712245903b5@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-php |
From: PHP Bug Database <php-bugs(at)lists(dot)php(dot)net>
Date: Apr 20, 2005 1:13 AM
Subject: Bug #32774: stdin handling confusion in COPY
To: volkan(dot)yazici(at)gmail(dot)com
From: volkan dot yazici at gmail dot com
Operating system: Linux 2.6.11
PHP version: 5.0.3
PHP Bug Type: PostgreSQL related
Bug description: stdin handling confusion in COPY
Description:
------------
There seems to be a confusion in handling stdin between PostgreSQL and
PHP.
Reproduce code:
---------------
<?php
$conn = pg_connect("user=knt dbname=template1")
or die("Connection failed!\n");
print "Starting query...\n";
$res = pg_query("COPY example_table FROM stdin");
/*
* If I'd not use a pg_end_copy() call just after "COPY FROM
* stdin" query, script flow will never pass through this
* line and stuck here with a 100% CPU usage.
*/
if ( pg_result_status($res) != PGSQL_COPY_IN )
die("Unexpected result status!\n");
print "At last!\n";
pg_close();
?>
/*
* The same of this script
* [http://yazicivo.fateback.com/example-copy.txt] written
* in C (with same libpq calls) works fine.
*/
Expected result:
----------------
shell$ php example-copy.php
Starting query...
At last!
shell$ _
Actual result:
--------------
shell$ php example-copy.php
Starting query...
# It enters to an endless loop with a 100% CPU usage.
From | Date | Subject | |
---|---|---|---|
Next Message | Aaron Dummer | 2005-05-02 16:34:38 | Determining transaction status |
Previous Message | Volkan YAZICI | 2005-05-01 13:59:01 | Fwd: Bug #32904: pg_get_notify() ignores result_type param. |