mirror of
https://github.com/php/php-src.git
synced 2024-12-15 12:54:57 +08:00
28 lines
770 B
PHP
28 lines
770 B
PHP
--TEST--
|
|
Bug #74376 (Invalid free of persistent results on error/connection loss)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('pdo') || !extension_loaded('pdo_mysql')) die('skip not loaded');
|
|
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'skipif.inc');
|
|
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
|
|
MySQLPDOTest::skip();
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
|
|
|
|
$attr = getenv('PDOTEST_ATTR');
|
|
$attr = $attr ? unserialize($attr) : [];
|
|
$attr[PDO::ATTR_PERSISTENT] = true;
|
|
$attr[PDO::ATTR_EMULATE_PREPARES] = false;
|
|
|
|
putenv('PDOTEST_ATTR=' . serialize($attr));
|
|
|
|
$db = MySQLPDOTest::factory();
|
|
$stmt = $db->query("select (select 1 union select 2)");
|
|
|
|
print "ok";
|
|
?>
|
|
--EXPECTF--
|
|
ok
|