Skip to content

Commit 72691bd

Browse files
committed
Fix return type
1 parent 521d8b1 commit 72691bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Processor/Expression/Evaluator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ public static function combineColumnTypes(array $types) : Column
269269
$type_1_null = $types[1] instanceof Column\NullColumn;
270270

271271
if ($type_0_null && $type_1_null) {
272-
return $type_1_null;
272+
return $types[0];
273273
}
274274

275275
if ($type_0_null) {

0 commit comments

Comments
 (0)