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 | a2c7c201aba6a773c1e26fe10015a6b077a7bd04 (patch) | |
tree | 85e9db051e142688ba1be5bde63090d3ffd48f90 | |
parent | c436981a70e89b26ead7a50c3a170d35b4187ccc (diff) | |
download | php-git-a2c7c201aba6a773c1e26fe10015a6b077a7bd04.tar.gz |
fix table name in testcase
-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); |