summaryrefslogtreecommitdiff
path: root/ext/pdo_firebird
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
commite2c5167b7bb1b41e5db082162f97305ab6cb5184 (patch)
tree7976e607dfc02becd628e22f9f1d316d45be38f5 /ext/pdo_firebird
parenta2c7c201aba6a773c1e26fe10015a6b077a7bd04 (diff)
downloadphp-git-e2c5167b7bb1b41e5db082162f97305ab6cb5184.tar.gz
one more error to fix Table unknown TEST , it should be TESTZ
Diffstat (limited to 'ext/pdo_firebird')
-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";