From: Wez Furlong Date: Wed, 6 Jul 2005 06:13:44 +0000 (+0000) Subject: last minute debug stuff sneaked in X-Git-Tag: php-5.1.0b3~166 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=72a75a87eaf453d1184dc7e31c7faede5b5fb612;p=php last minute debug stuff sneaked in --- diff --git a/ext/pdo/tests/pdo_016.phpt b/ext/pdo/tests/pdo_016.phpt index 92c7b02fb0..fb67d16677 100644 --- a/ext/pdo/tests/pdo_016.phpt +++ b/ext/pdo/tests/pdo_016.phpt @@ -19,10 +19,6 @@ $stmt2 = $db->prepare('SELECT idx, txt FROM test ORDER by idx'); $stmt1->execute(); var_dump($stmt1->fetchColumn()); -$stmt2->execute(); -$cont = $stmt2->fetchAll(); -var_dump($cont); - $stmt2->execute(); $cont = $stmt2->fetchAll(PDO_FETCH_COLUMN|PDO_FETCH_UNIQUE); var_dump($cont);