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

Function neq_op_bool

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

Source from the content-addressed store, hash-verified

3128
3129 #[test]
3130 fn neq_op_bool() {
3131 let (schema, a, b) = bool_test_arrays();
3132 let expected = [
3133 Some(false),
3134 None,
3135 Some(true),
3136 None,
3137 None,
3138 None,
3139 Some(true),
3140 None,
3141 Some(false),
3142 ]
3143 .iter()
3144 .collect();
3145 apply_logic_op(&schema, &a, &b, Operator::NotEq, expected).unwrap();
3146 }
3147
3148 #[test]
3149 fn neq_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…