summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPopa Adrian Marius <mariuz@php.net>2011-12-28 10:04:25 +0000
committerPopa Adrian Marius <mariuz@php.net>2011-12-28 10:04:25 +0000
commit06273de0fa7c2991e5bf90628125e84c505b2d00 (patch)
tree5204d7b94708a1313f8acaefab195767eb8dc2fb
parent6a3148eceffca259ae4f9ad0d8e1a71f16f3ac45 (diff)
downloadphp-git-06273de0fa7c2991e5bf90628125e84c505b2d00.tar.gz
one more error to fix Table unknown TEST , it should be TESTZ
-rw-r--r--ext/pdo_firebird/tests/bug_47415.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_firebird/tests/bug_47415.phpt b/ext/pdo_firebird/tests/bug_47415.phpt
index 030cdc7eeb..cedc2c45b2 100644
--- a/ext/pdo_firebird/tests/bug_47415.phpt
+++ b/ext/pdo_firebird/tests/bug_47415.phpt
@@ -12,7 +12,7 @@ $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
$value = '2';
@$dbh->exec('DROP TABLE testz');
$dbh->exec('CREATE TABLE testz (idx int NOT NULL PRIMARY KEY, txt VARCHAR(20))');
-$dbh->exec('INSERT INTO test VALUES(0, \'String0\')');
+$dbh->exec('INSERT INTO testz VALUES(0, \'String0\')');
$dbh->commit();
$query = "SELECT idx, txt FROM testz ORDER by idx";