mirror of
https://github.com/php/php-src.git
synced 2026-04-25 17:08: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.
30 lines
615 B
PHP
30 lines
615 B
PHP
--TEST--
|
|
PostgreSQL pg_escape_bytea() functions
|
|
--SKIPIF--
|
|
<?php include("skipif.inc"); ?>
|
|
--FILE--
|
|
<?php
|
|
// optional functions
|
|
|
|
include('config.inc');
|
|
|
|
$db = pg_connect($conn_str);
|
|
|
|
$image = file_get_contents(dirname(__FILE__) . '/php.gif');
|
|
$esc_image = pg_escape_bytea($image);
|
|
|
|
pg_query($db, 'INSERT INTO '.$table_name.' (num, bin) VALUES (9876, \''.$esc_image.'\');');
|
|
$result = pg_query($db, 'SELECT * FROM '.$table_name.' WHERE num = 9876');
|
|
$rows = pg_fetch_all($result);
|
|
$unesc_image = pg_unescape_bytea($rows[0]['bin']);
|
|
|
|
if ($unesc_image !== $image) {
|
|
echo "NG";
|
|
}
|
|
else {
|
|
echo "OK";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
OK
|