diff options
author | Popa Adrian Marius <mariuz@php.net> | 2011-12-28 10:04:25 +0000 |
---|---|---|
committer | Popa Adrian Marius <mariuz@php.net> | 2011-12-28 10:04:25 +0000 |
commit | e2c5167b7bb1b41e5db082162f97305ab6cb5184 (patch) | |
tree | 7976e607dfc02becd628e22f9f1d316d45be38f5 /ext/pdo_firebird | |
parent | a2c7c201aba6a773c1e26fe10015a6b077a7bd04 (diff) | |
download | php-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.phpt | 2 |
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"; |