We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c63f0d commit 48498d5Copy full SHA for 48498d5
tests/default/DbaInferenceTest.php
@@ -20,7 +20,11 @@ public function dataFileAsserts(): iterable
20
21
yield from $this->gatherAssertTypes(__DIR__ . '/data/doctrine-dbal.php');
22
yield from $this->gatherAssertTypes(__DIR__ . '/data/inference-placeholder.php');
23
- yield from $this->gatherAssertTypes(__DIR__ . '/data/bug-680.php');
+
24
+ // for some reason does not work in pgsql
25
+ if ('pdo-pgsql' !== getenv('DBA_REFLECTOR')) {
26
+ yield from $this->gatherAssertTypes(__DIR__ . '/data/bug-680.php');
27
+ }
28
}
29
30
// make sure class constants can be resolved
0 commit comments