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
commitcaeba0e83f40de42a68fce18f6c902bf7041d49a (patch)
treeb37cc42372cac5d95a41e8161f3bfd9e2d203432
parentbba41172e7333853e2b0cf66bd4aecb03bc1a7af (diff)
downloadphp-git-caeba0e83f40de42a68fce18f6c902bf7041d49a.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";