mirror of
https://github.com/danog/ext-pq.git
synced 2024-11-26 11:54:50 +01:00
21 lines
288 B
PHP
21 lines
288 B
PHP
--TEST--
|
|
crash txn reverse dependency from connection
|
|
--SKIPIF--
|
|
<?php
|
|
include "_skipif.inc";
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
echo "Test\n";
|
|
|
|
include "_setup.inc";
|
|
|
|
$c = new pq\Connection(PQ_DSN);
|
|
$c->c = $c->declare("test", pq\Cursor::WITH_HOLD, "SELECT 1");
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
Test
|
|
===DONE===
|