diff options
author | Popa Adrian Marius <mariuz@php.net> | 2011-12-28 19:09:41 +0000 |
---|---|---|
committer | Popa Adrian Marius <mariuz@php.net> | 2011-12-28 19:09:41 +0000 |
commit | 13fb5735fc569199dca75044cd21ddcfd9d41bf4 (patch) | |
tree | 4d56dae9ed51f5ac2bc9cbe2ba156bb3db3ba80d | |
parent | 40656de5bde271a70eceb39567314f570c0802ba (diff) | |
download | php-git-13fb5735fc569199dca75044cd21ddcfd9d41bf4.tar.gz |
fix tablename in testcase test->testz
-rw-r--r-- | ext/pdo_firebird/tests/bug_53280.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
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')); |