summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPopa Adrian Marius <mariuz@php.net>2011-12-28 19:09:41 +0000
committerPopa Adrian Marius <mariuz@php.net>2011-12-28 19:09:41 +0000
commitd9f334c633905724982ce4573767bcb8f4c5be5c (patch)
tree6ec73831d142905751abeb5749e9fd06a42f1331
parentc4c248c6e7b7f6fba57ef3355acf1d5c49ce5093 (diff)
downloadphp-git-d9f334c633905724982ce4573767bcb8f4c5be5c.tar.gz
fix tablename in testcase test->testz
-rw-r--r--ext/pdo_firebird/tests/bug_53280.phpt6
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'));