[PECL-CVS] [pecl-database-pdo_oci] main: Reverting test change in pdo_oci_debugdumpparams.phpt due to CI test failure
[email protected] (Sharad Chandran R)
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Sharad Chandran R (sharadraju)
Date: 2026-01-05T13:43:24+05:30
Commit: https://github.com/php/pecl-database-pdo_oci/commit/d6cd5eac297cf368be5b6f77c0c46b13b7188441
Raw diff: https://github.com/php/pecl-database-pdo_oci/commit/d6cd5eac297cf368be5b6f77c0c46b13b7188441.diff
Reverting test change in pdo_oci_debugdumpparams.phpt due to CI test failure
Changed paths:
M tests/pdo_oci_debugdumpparams.phpt
Diff:
diff --git a/tests/pdo_oci_debugdumpparams.phpt b/tests/pdo_oci_debugdumpparams.phpt
index 68c9149..52d13ef 100644
--- a/tests/pdo_oci_debugdumpparams.phpt
+++ b/tests/pdo_oci_debugdumpparams.phpt
@@ -26,7 +26,7 @@ $stmt = $db->query("
var_dump($stmt->debugDumpParams());
?>
--EXPECTF--
-SQL: [852]%s
+SQL: [844]%s
SELECT '
Dumps the information contained by a prepared statement directly on the output. It will provide the SQL query in use, the number of parameters used (Params), the list of parameters, with their name, type (paramtype) as an integer, their key name or position, and the position in the query (if this is supported by the PDO driver, otherwise, it will be -1).
This is a debug function, which dump directly the data on the normal output.