diff options
author | Popa Adrian Marius <mariuz@php.net> | 2011-12-28 09:59:53 +0000 |
---|---|---|
committer | Popa Adrian Marius <mariuz@php.net> | 2011-12-28 09:59:53 +0000 |
commit | bba41172e7333853e2b0cf66bd4aecb03bc1a7af (patch) | |
tree | 125b60e2d746f92e349aca63032f62bf9942482a /ext/pdo_firebird | |
parent | c058385112e8aac09f6cbbcb54fed0773f83ce82 (diff) | |
download | php-git-bba41172e7333853e2b0cf66bd4aecb03bc1a7af.tar.gz |
fix table name in testcase
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 396233640f..030cdc7eeb 100644 --- a/ext/pdo_firebird/tests/bug_47415.phpt +++ b/ext/pdo_firebird/tests/bug_47415.phpt @@ -15,7 +15,7 @@ $dbh->exec('CREATE TABLE testz (idx int NOT NULL PRIMARY KEY, txt VARCHAR(20))') $dbh->exec('INSERT INTO test VALUES(0, \'String0\')'); $dbh->commit(); -$query = "SELECT idx, txt FROM test ORDER by idx"; +$query = "SELECT idx, txt FROM testz ORDER by idx"; $idx = $txt = 0; $stmt = $dbh->prepare($query); $stmt->bindColumn('idx', $idx); |