From: George Peter Banyard Date: Fri, 25 Sep 2020 01:43:44 +0000 (+0100) Subject: Drop ZPP check in PDO MySQLi test X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9fab1b90abfe9a2b25e4b1c88a232746c7a66031;p=php Drop ZPP check in PDO MySQLi test 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 --- diff --git a/ext/pdo_mysql/tests/pdo_mysql_stmt_nextrowset.phpt b/ext/pdo_mysql/tests/pdo_mysql_stmt_nextrowset.phpt index c8f188a738..eac4b9e4d8 100644 --- a/ext/pdo_mysql/tests/pdo_mysql_stmt_nextrowset.phpt +++ b/ext/pdo_mysql/tests/pdo_mysql_stmt_nextrowset.phpt @@ -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');