fixup
authorMichael Wallner <mike@php.net>
Wed, 15 Oct 2014 15:56:18 +0000 (17:56 +0200)
committerMichael Wallner <mike@php.net>
Wed, 15 Oct 2014 15:56:18 +0000 (17:56 +0200)
tests/notify001.phpt
tests/trans002.phpt

index bb2b7c2ea5cb4bd754423d38120c29ee74b0f9da..e255353e27ed8ed2e2e29ee725f9ca3ddf1cdd58 100644 (file)
@@ -22,7 +22,7 @@ $producer->notify("test", "this is an async test");
 
 $r = array($consumer->socket);
 $w = null; $e = null;
-var_dump(stream_select($r, $w, $e, 0));
+var_dump(stream_select($r, $w, $e, NULL));
 $consumer->poll();
 
 $producer->notify("other", "this should not show up");
index 8c901d49ec0f0481b7348af95b51a228e3d87fa7..31c29567c428030168bbf136e4ba369c57f497cd 100644 (file)
@@ -10,7 +10,6 @@ include "_setup.inc";
 
 $t = new pq\Transaction(new pq\Connection(PQ_DSN));
 var_dump(
-       $t->connection,
        $t->isolation,
        $t->readonly,
        $t->deferrable
@@ -20,7 +19,6 @@ $t->isolation = pq\Transaction::SERIALIZABLE;
 $t->readonly = true;
 $t->deferrable = true;
 var_dump(
-       $t->connection,
        $t->isolation,
        $t->readonly,
        $t->deferrable
@@ -29,91 +27,9 @@ var_dump(
 DONE
 --EXPECTF--
 Test
-object(pq\Connection)#%d (19) {
-  ["status"]=>
-  int(0)
-  ["transactionStatus"]=>
-  int(2)
-  ["socket"]=>
-  resource(%d) of type (stream)
-  ["errorMessage"]=>
-  string(0) ""
-  ["busy"]=>
-  bool(false)
-  ["encoding"]=>
-  string(4) "%s"
-  ["unbuffered"]=>
-  bool(false)
-  ["db"]=>
-  string(4) "%S"
-  ["user"]=>
-  string(4) "%S"
-  ["pass"]=>
-  string(0) "%S"
-  ["host"]=>
-  string(0) "%S"
-  ["port"]=>
-  string(4) "%S"
-  ["options"]=>
-  string(0) "%S"
-  ["eventHandlers"]=>
-  array(0) {
-  }
-  ["defaultFetchType"]=>
-  int(0)
-  ["defaultTransactionIsolation"]=>
-  int(0)
-  ["defaultTransactionReadonly"]=>
-  bool(false)
-  ["defaultTransactionDeferrable"]=>
-  bool(false)
-  ["defaultAutoConvert"]=>
-  int(65535)
-}
 int(0)
 bool(false)
 bool(false)
-object(pq\Connection)#%d (19) {
-  ["status"]=>
-  int(0)
-  ["transactionStatus"]=>
-  int(2)
-  ["socket"]=>
-  resource(%d) of type (stream)
-  ["errorMessage"]=>
-  string(0) ""
-  ["busy"]=>
-  bool(false)
-  ["encoding"]=>
-  string(4) "%s"
-  ["unbuffered"]=>
-  bool(false)
-  ["db"]=>
-  string(4) "%S"
-  ["user"]=>
-  string(4) "%S"
-  ["pass"]=>
-  string(0) "%S"
-  ["host"]=>
-  string(0) "%S"
-  ["port"]=>
-  string(4) "%S"
-  ["options"]=>
-  string(0) "%S"
-  ["eventHandlers"]=>
-  array(0) {
-  }
-  ["defaultFetchType"]=>
-  int(0)
-  ["defaultTransactionIsolation"]=>
-  int(0)
-  ["defaultTransactionReadonly"]=>
-  bool(false)
-  ["defaultTransactionDeferrable"]=>
-  bool(false)
-  ["defaultAutoConvert"]=>
-  int(65535)
-}
 int(2)
 bool(true)
 bool(true)