mirror of
https://github.com/php/php-src.git
synced 2026-04-22 23:48:14 +02:00
79803bebde
Postgres 9.1+ test fixes. Tests were failing due to the default standard_conforming_strings GUC being changed to on. Also the pg_escape_bytea test was encoding the data before estabilishing a connection, thus falling back to the old escaping type which isn't properly handled by the backend when using a default configuration. I haven't updated the NEWS file as it's just test fixes.
31 lines
530 B
PHP
31 lines
530 B
PHP
--TEST--
|
|
PostgreSQL pg_convert() (8.5+)
|
|
--SKIPIF--
|
|
<?php
|
|
include("skipif.inc");
|
|
skip_server_version('8.5dev', '<');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
error_reporting(E_ALL);
|
|
|
|
include 'config.inc';
|
|
|
|
$db = pg_connect($conn_str);
|
|
pg_query($db, "SET standard_conforming_strings = 0");
|
|
|
|
$fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
|
|
$converted = pg_convert($db, $table_name, $fields);
|
|
|
|
var_dump($converted);
|
|
?>
|
|
--EXPECT--
|
|
array(3) {
|
|
["num"]=>
|
|
string(4) "1234"
|
|
["str"]=>
|
|
string(5) "'AAA'"
|
|
["bin"]=>
|
|
string(11) "'\\x424242'"
|
|
}
|