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 | caeba0e83f40de42a68fce18f6c902bf7041d49a (patch) | |
tree | b37cc42372cac5d95a41e8161f3bfd9e2d203432 /ext/pdo_firebird | |
parent | bba41172e7333853e2b0cf66bd4aecb03bc1a7af (diff) | |
download | php-git-caeba0e83f40de42a68fce18f6c902bf7041d49a.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"; |