Skip to content

Commit 7a93d1d

Browse files
committed
chore: make fmt happy
Signed-off-by: Chojan Shang <[email protected]>
1 parent 4b8ac2b commit 7a93d1d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

datafusion/expr/src/type_coercion/binary.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,9 @@ fn binary_coercion(lhs_type: &DataType, rhs_type: &DataType) -> Option<DataType>
991991
(Binary | Utf8, Binary) | (Binary, Utf8) => Some(Binary),
992992
(LargeBinary | Binary | Utf8 | LargeUtf8, LargeBinary)
993993
| (LargeBinary, Binary | Utf8 | LargeUtf8) => Some(LargeBinary),
994-
(BinaryView, BinaryView) | (BinaryView, Binary) | (Binary, BinaryView) => Some(BinaryView),
994+
(BinaryView, BinaryView) | (BinaryView, Binary) | (Binary, BinaryView) => {
995+
Some(BinaryView)
996+
}
995997
_ => None,
996998
}
997999
}

0 commit comments

Comments
 (0)