Skip to content

Commit c8e9501

Browse files
committed
Fix PdoPgSqlQueryReflector build errors
1 parent 0151377 commit c8e9501

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/QueryReflection/PdoPgSqlQueryReflector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ protected function checkInformationSchema(string $tableName): Iterator
122122
foreach ($result as $row) {
123123
$default = $row['COLUMN_DEFAULT'] ?? '';
124124
$columnName = $row['COLUMN_NAME'];
125-
if ($columnName === null) {
125+
if ($columnName === null) { // @phpstan-ignore identical.alwaysFalse
126126
throw new ShouldNotHappenException('Failed to get column name');
127127
}
128128
$isNullable = 'YES' === $row['IS_NULLABLE'];

0 commit comments

Comments
 (0)