From fd9fb7e70a5e0362c20b6154ed5989ef3a268fce Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Sat, 23 May 2026 17:31:48 +0200 Subject: [PATCH] Fix doctrine CI --- tests/Platform/QueryResultTypeWalkerFetchTypeMatrixTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Platform/QueryResultTypeWalkerFetchTypeMatrixTest.php b/tests/Platform/QueryResultTypeWalkerFetchTypeMatrixTest.php index c9f07109..0330c7bf 100644 --- a/tests/Platform/QueryResultTypeWalkerFetchTypeMatrixTest.php +++ b/tests/Platform/QueryResultTypeWalkerFetchTypeMatrixTest.php @@ -1887,7 +1887,8 @@ public static function provideCases(): iterable 'mysqlExpectedResult' => null, 'sqliteExpectedResult' => null, 'pdoPgsqlExpectedResult' => null, - 'pgsqlExpectedResult' => null, + // The bugfix https://github.com/doctrine/dbal/pull/7059 was backport in 4.3.2 which requires PHP 8.2. + 'pgsqlExpectedResult' => PHP_VERSION_ID < 80200 && self::hasDbal4() ? false : null, 'mssqlExpectedResult' => null, 'stringify' => self::STRINGIFY_NONE, ];