You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Which issue does this PR close?
- Contribute to #6827
# Rationale for this change
Splitting up #8227.
# What changes are included in this PR?
Migrate `arrow-select` to Rust 2024
# Are these changes tested?
CI
# Are there any user-facing changes?
Yes
assert_eq!(re.unwrap_err().to_string(),"Invalid argument error: It is not possible to concatenate arrays of different data types (Int64, Utf8, Int32).");
552
+
assert_eq!(
553
+
re.unwrap_err().to_string(),
554
+
"Invalid argument error: It is not possible to concatenate arrays of different data types (Int64, Utf8, Int32)."
assert_eq!(re.unwrap_err().to_string(),"Invalid argument error: It is not possible to concatenate arrays of different data types (Int64, Utf8, Int32, Int8, Int16, UInt8, UInt16, UInt32, UInt64, Float32).");
578
+
assert_eq!(
579
+
re.unwrap_err().to_string(),
580
+
"Invalid argument error: It is not possible to concatenate arrays of different data types (Int64, Utf8, Int32, Int8, Int16, UInt8, UInt16, UInt32, UInt64, Float32)."
assert_eq!(re.unwrap_err().to_string(),"Invalid argument error: It is not possible to concatenate arrays of different data types (Int64, Utf8, Int32, Int8, Int16, UInt8, UInt16, UInt32, UInt64, Float32, ...).");
605
+
assert_eq!(
606
+
re.unwrap_err().to_string(),
607
+
"Invalid argument error: It is not possible to concatenate arrays of different data types (Int64, Utf8, Int32, Int8, Int16, UInt8, UInt16, UInt32, UInt64, Float32, ...)."
assert_eq!(re.unwrap_err().to_string(),"Invalid argument error: It is not possible to concatenate arrays of different data types (Int64, Utf8, Int32, Int8, Int16, UInt8, UInt16, UInt32, UInt64, Float32, ...).");
634
+
assert_eq!(
635
+
re.unwrap_err().to_string(),
636
+
"Invalid argument error: It is not possible to concatenate arrays of different data types (Int64, Utf8, Int32, Int8, Int16, UInt8, UInt16, UInt32, UInt64, Float32, ...)."
637
+
);
626
638
}
627
639
628
640
#[test]
@@ -1154,12 +1166,14 @@ mod tests {
1154
1166
// Verify pointer equality check succeeds, and therefore the
1155
1167
// dictionaries are not merged. A single values buffer should be reused
0 commit comments