We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79a17e3 commit 6bdb14cCopy full SHA for 6bdb14c
1 file changed
datafusion/functions-window/src/nth_value.rs
@@ -685,9 +685,9 @@ mod tests {
685
))
686
.unwrap_err();
687
688
- assert_eq!(
689
- err.to_string(),
690
- "Execution error: The second argument of nth_value must not be i64::MIN"
+ assert!(
+ err.to_string()
+ .starts_with("Execution error: The second argument of nth_value must not be i64::MIN")
691
);
692
}
693
0 commit comments