MCPcopy Create free account
hub / github.com/apache/datafusion / eq_op_bool

Function eq_op_bool

datafusion/physical-expr/src/expressions/binary.rs:3071–3087  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3069
3070 #[test]
3071 fn eq_op_bool() {
3072 let (schema, a, b) = bool_test_arrays();
3073 let expected = [
3074 Some(true),
3075 None,
3076 Some(false),
3077 None,
3078 None,
3079 None,
3080 Some(false),
3081 None,
3082 Some(true),
3083 ]
3084 .iter()
3085 .collect();
3086 apply_logic_op(&schema, &a, &b, Operator::Eq, expected).unwrap();
3087 }
3088
3089 #[test]
3090 fn eq_op_bool_scalar() {

Callers

nothing calls this directly

Calls 4

bool_test_arraysFunction · 0.85
apply_logic_opFunction · 0.85
collectMethod · 0.80
iterMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…