We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2262f99 commit 1b87caaCopy full SHA for 1b87caa
1 file changed
datafusion/expr-common/src/type_coercion/binary/tests/arithmetic.rs
@@ -18,20 +18,6 @@
18
use super::*;
19
use datafusion_common::assert_contains;
20
21
-#[test]
22
-fn test_coercion_error() -> Result<()> {
23
- let coercer =
24
- BinaryTypeCoercer::new(&DataType::Float32, &Operator::Plus, &DataType::Utf8);
25
- let result_type = coercer.get_input_types();
26
-
27
- let e = result_type.unwrap_err();
28
- assert_eq!(
29
- e.strip_backtrace(),
30
- "Error during planning: Cannot coerce arithmetic expression Float32 + Utf8 to valid types"
31
- );
32
- Ok(())
33
-}
34
35
#[test]
36
fn test_date_timestamp_arithmetic_error() -> Result<()> {
37
let (lhs, rhs) = BinaryTypeCoercer::new(
0 commit comments