--- embedaddon/php/ext/pdo_mysql/tests/bug_41997.phpt 2012/02/21 23:47:59 1.1.1.1 +++ embedaddon/php/ext/pdo_mysql/tests/bug_41997.phpt 2013/07/22 01:31:58 1.1.1.2 @@ -2,12 +2,11 @@ PDO MySQL Bug #41997 (stored procedure call returning single rowset blocks future queries) --SKIPIF-- query('SELECT VERSION() as _version')->fetch(PDO::FETCH_ASSOC); $matches = array(); if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches)) @@ -20,9 +19,8 @@ if ($version < 50000) ?> --FILE-- exec('DROP PROCEDURE IF EXISTS p'); $db->exec('CREATE PROCEDURE p() BEGIN SELECT 1 AS "one"; END');