projects
/
php
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c058385
)
fix table name in testcase
author
Popa Adrian Marius
<mariuz@php.net>
Wed, 28 Dec 2011 09:59:53 +0000
(09:59 +0000)
committer
Popa Adrian Marius
<mariuz@php.net>
Wed, 28 Dec 2011 09:59:53 +0000
(09:59 +0000)
ext/pdo_firebird/tests/bug_47415.phpt
patch
|
blob
|
history
diff --git
a/ext/pdo_firebird/tests/bug_47415.phpt
b/ext/pdo_firebird/tests/bug_47415.phpt
index 396233640f75321148f0135912050a86733c9a9d..030cdc7eeb29cf134b9cba9f8357bf1029f1a36a 100644
(file)
--- 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 test
z
ORDER by idx";
$idx = $txt = 0;
$stmt = $dbh->prepare($query);
$stmt->bindColumn('idx', $idx);