Skip to content

Commit 1dd639d

Browse files
committed
Fix cargo fmt
1 parent 38cb4ec commit 1dd639d

File tree

1 file changed

+4
-1
lines changed
  • datafusion/expr-common/src/type_coercion

1 file changed

+4
-1
lines changed

datafusion/expr-common/src/type_coercion/binary.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,10 @@ fn string_coercion(lhs_type: &DataType, rhs_type: &DataType) -> Option<DataType>
986986

987987
/// This will be deprecated when binary operators native support
988988
/// for Utf8View (use `string_coercion` instead).
989-
fn regex_comparison_string_coercion(lhs_type: &DataType, rhs_type: &DataType) -> Option<DataType> {
989+
fn regex_comparison_string_coercion(
990+
lhs_type: &DataType,
991+
rhs_type: &DataType,
992+
) -> Option<DataType> {
990993
use arrow::datatypes::DataType::*;
991994
match (lhs_type, rhs_type) {
992995
// If Utf8View is in any side, we coerce to Utf8.

0 commit comments

Comments
 (0)