Skip to content

Commit 7a9764c

Browse files
committed
Fix table name in initialization DROP TABLE statement
1 parent 3bf012a commit 7a9764c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/pdo_oci/tests/bug57702.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ $db = PDOTest::test_factory('ext/pdo_oci/tests/common.phpt');
1515
// Note the PDO test setup sets PDO::ATTR_STRINGIFY_FETCHES to true
1616
// (and sets PDO::ATTR_CASE to PDO::CASE_LOWER)
1717

18-
$query = "begin execute immediate 'drop table mytable'; exception when others then if sqlcode <> -942 then raise; end if; end;";
18+
$query = "begin execute immediate 'drop table bug57702'; exception when others then if sqlcode <> -942 then raise; end if; end;";
1919
$stmt = $db->prepare($query);
2020
$stmt->execute();
2121

0 commit comments

Comments
 (0)