]> granicus.if.org Git - php/commitdiff
Drop ZPP check in PDO MySQLi test
authorGeorge Peter Banyard <girgias@php.net>
Fri, 25 Sep 2020 01:43:44 +0000 (02:43 +0100)
committerGeorge Peter Banyard <girgias@php.net>
Mon, 28 Sep 2020 17:51:35 +0000 (18:51 +0100)
This test is marked as XFAIL so it doesn't get looked at.

It checks that the method is called without arguments which is a ZPP concern

ext/pdo_mysql/tests/pdo_mysql_stmt_nextrowset.phpt

index c8f188a7389086bd22341bf643c6d8957639c25a..eac4b9e4d80af5cdf0fd72fe29679a0ee7b02a2d 100644 (file)
@@ -33,10 +33,6 @@ if (!MySQLPDOTest::isPDOMySQLnd())
     if (false !== ($tmp = $stmt->nextRowSet()))
         printf("[002] Expecting false got %s\n", var_export($tmp, true));
 
-    // TODO: should give a warning, but its PDO, let's ignore the missing warning for now
-    if (false !== ($tmp = $stmt->nextRowSet(1)))
-        printf("[003] Expecting false got %s\n", var_export($tmp, true));
-
     function test_proc1($db) {
 
         $stmt = $db->query('SELECT @VERSION as _version');