From: Popa Adrian Marius Date: Wed, 28 Dec 2011 19:09:41 +0000 (+0000) Subject: fix tablename in testcase test->testz X-Git-Tag: php-5.5.0alpha1~659 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=13fb5735fc569199dca75044cd21ddcfd9d41bf4;p=php fix tablename in testcase test->testz --- diff --git a/ext/pdo_firebird/tests/bug_53280.phpt b/ext/pdo_firebird/tests/bug_53280.phpt index 48fe483bb9..cc030dd496 100644 --- a/ext/pdo_firebird/tests/bug_53280.phpt +++ b/ext/pdo_firebird/tests/bug_53280.phpt @@ -11,11 +11,11 @@ $dbh = new PDO("firebird:dbname=$test_base",$user,$password) or die; $value = '2'; @$dbh->exec('DROP TABLE testz'); $dbh->exec('CREATE TABLE testz(A VARCHAR(30), B VARCHAR(30), C VARCHAR(30))'); -$dbh->exec("INSERT INTO test VALUES ('A', 'B', 'C')"); +$dbh->exec("INSERT INTO testz VALUES ('A', 'B', 'C')"); $dbh->commit(); -$stmt1 = "SELECT B FROM test WHERE A = ? AND B = ?"; -$stmt2 = "SELECT B, C FROM test WHERE A = ? AND B = ?"; +$stmt1 = "SELECT B FROM testz WHERE A = ? AND B = ?"; +$stmt2 = "SELECT B, C FROM testz WHERE A = ? AND B = ?"; $stmth2 = $dbh->prepare($stmt2); $stmth2->execute(array('A', 'B'));