mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
67bde2f8ac
bug46274.phpt and bug46274_2.phpt Make query silent (when server don't know bytea_output option) bug_49985.phpt Make result "locale" independent
91 lines
1.7 KiB
PHP
91 lines
1.7 KiB
PHP
--TEST--
|
|
Bug #46274 (pdo_pgsql - Segfault when using PDO::ATTR_STRINGIFY_FETCHES and blob)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('pdo') || !extension_loaded('pdo_pgsql')) die('skip not loaded');
|
|
require dirname(__FILE__) . '/config.inc';
|
|
require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc';
|
|
PDOTest::skip();
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc';
|
|
$db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt');
|
|
|
|
$db->setAttribute(PDO::ATTR_STRINGIFY_FETCHES, true);
|
|
|
|
try {
|
|
@$db->query("SET bytea_output = 'escape'");
|
|
} catch (Exception $e) {
|
|
}
|
|
|
|
$db->query('CREATE TABLE test_one_blob (id SERIAL NOT NULL, blob1 BYTEA)');
|
|
|
|
$stmt = $db->prepare("INSERT INTO test_one_blob (blob1) VALUES (:foo)");
|
|
|
|
$data = 'foo';
|
|
$blob = fopen('php://memory', 'a');
|
|
fwrite($blob, $data);
|
|
rewind($blob);
|
|
|
|
$stmt->bindparam(':foo', $blob, PDO::PARAM_LOB);
|
|
$stmt->execute();
|
|
|
|
$blob = '';
|
|
$stmt->bindparam(':foo', $blob, PDO::PARAM_LOB);
|
|
$stmt->execute();
|
|
|
|
$data = '';
|
|
$blob = fopen('php://memory', 'a');
|
|
fwrite($blob, $data);
|
|
rewind($blob);
|
|
|
|
$stmt->bindparam(':foo', $blob, PDO::PARAM_LOB);
|
|
$stmt->execute();
|
|
|
|
$blob = NULL;
|
|
$stmt->bindparam(':foo', $blob, PDO::PARAM_LOB);
|
|
$stmt->execute();
|
|
|
|
$res = $db->query("SELECT blob1 from test_one_blob");
|
|
// Resource
|
|
var_dump($res->fetch());
|
|
|
|
// Empty string
|
|
var_dump($res->fetch());
|
|
|
|
// Empty string
|
|
var_dump($res->fetch());
|
|
|
|
// NULL
|
|
var_dump($res->fetch());
|
|
|
|
$db->query('DROP TABLE test_one_blob');
|
|
|
|
?>
|
|
--EXPECTF--
|
|
array(2) {
|
|
["blob1"]=>
|
|
string(3) "foo"
|
|
[0]=>
|
|
string(3) "foo"
|
|
}
|
|
array(2) {
|
|
["blob1"]=>
|
|
string(0) ""
|
|
[0]=>
|
|
string(0) ""
|
|
}
|
|
array(2) {
|
|
["blob1"]=>
|
|
string(0) ""
|
|
[0]=>
|
|
string(0) ""
|
|
}
|
|
array(2) {
|
|
["blob1"]=>
|
|
NULL
|
|
[0]=>
|
|
NULL
|
|
}
|