Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
aidan-bailey committed Jun 11, 2024
1 parent 7af2729 commit 8a2122b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nemo-physical/src/function/definitions/string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,9 @@ impl BinaryFunction for StringSubstring {
return None;
}

Some(AnyDataValue::new_plain_string(string[(start - 1)..].to_string()))
Some(AnyDataValue::new_plain_string(
string[(start - 1)..].to_string(),
))
}

fn type_propagation(&self) -> FunctionTypePropagation {
Expand Down

0 comments on commit 8a2122b

Please sign in to comment.