From: Christopher Jones Date: Sat, 27 Jun 2015 00:01:15 +0000 (+1000) Subject: Fix table name in initialization DROP TABLE statement X-Git-Tag: php-7.1.0alpha3~25^2~163 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a9764c5bb53d5253207871f9de453e386127eb6;p=php Fix table name in initialization DROP TABLE statement --- diff --git a/ext/pdo_oci/tests/bug57702.phpt b/ext/pdo_oci/tests/bug57702.phpt index 9281f6d0f7..0060bb0f2e 100644 --- a/ext/pdo_oci/tests/bug57702.phpt +++ b/ext/pdo_oci/tests/bug57702.phpt @@ -15,7 +15,7 @@ $db = PDOTest::test_factory('ext/pdo_oci/tests/common.phpt'); // Note the PDO test setup sets PDO::ATTR_STRINGIFY_FETCHES to true // (and sets PDO::ATTR_CASE to PDO::CASE_LOWER) -$query = "begin execute immediate 'drop table mytable'; exception when others then if sqlcode <> -942 then raise; end if; end;"; +$query = "begin execute immediate 'drop table bug57702'; exception when others then if sqlcode <> -942 then raise; end if; end;"; $stmt = $db->prepare($query); $stmt->execute();