????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.22.66.60 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/pgsql/tests/ |
Upload File : |
--TEST-- Bug #68638 pg_update() fails to store infinite values --SKIPIF-- <?php include("skipif.inc"); ?> --FILE-- <?php include('config.inc'); $conn = pg_connect($conn_str); $table='test_68638'; pg_query("CREATE TABLE $table (id INT, value FLOAT)"); pg_insert($conn,$table, array('id' => 1, 'value' => 1.2)); pg_insert($conn,$table, array('id' => 2, 'value' => 10)); pg_insert($conn,$table, array('id' => 3, 'value' => 15)); var_dump(pg_update($conn,$table, array('value' => 'inf'), array('id' => 1), PGSQL_DML_STRING)); pg_update($conn,$table, array('value' => 'inf'), array('id' => 1)); pg_update($conn,$table, array('value' => '-inf'), array('id' => 2)); pg_update($conn,$table, array('value' => '+inf'), array('id' => 3)); $rs = pg_query("SELECT * FROM $table"); while ($row = pg_fetch_assoc($rs)) { var_dump($row); } pg_query("DROP TABLE $table"); ?> --EXPECT-- string(52) "UPDATE "test_68638" SET "value"=E'inf' WHERE "id"=1;" array(2) { ["id"]=> string(1) "1" ["value"]=> string(8) "Infinity" } array(2) { ["id"]=> string(1) "2" ["value"]=> string(9) "-Infinity" } array(2) { ["id"]=> string(1) "3" ["value"]=> string(8) "Infinity" }