From: Popa Adrian Marius Date: Wed, 28 Dec 2011 09:59:53 +0000 (+0000) Subject: fix table name in testcase X-Git-Tag: php-5.3.9~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a2c7c201aba6a773c1e26fe10015a6b077a7bd04;p=php fix table name in testcase --- diff --git a/ext/pdo_firebird/tests/bug_47415.phpt b/ext/pdo_firebird/tests/bug_47415.phpt index 396233640f..030cdc7eeb 100644 --- a/ext/pdo_firebird/tests/bug_47415.phpt +++ b/ext/pdo_firebird/tests/bug_47415.phpt @@ -15,7 +15,7 @@ $dbh->exec('CREATE TABLE testz (idx int NOT NULL PRIMARY KEY, txt VARCHAR(20))') $dbh->exec('INSERT INTO test VALUES(0, \'String0\')'); $dbh->commit(); -$query = "SELECT idx, txt FROM test ORDER by idx"; +$query = "SELECT idx, txt FROM testz ORDER by idx"; $idx = $txt = 0; $stmt = $dbh->prepare($query); $stmt->bindColumn('idx', $idx);