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

Function lt_op_bool

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

Source from the content-addressed store, hash-verified

3187
3188 #[test]
3189 fn lt_op_bool() {
3190 let (schema, a, b) = bool_test_arrays();
3191 let expected = [
3192 Some(false),
3193 None,
3194 Some(false),
3195 None,
3196 None,
3197 None,
3198 Some(true),
3199 None,
3200 Some(false),
3201 ]
3202 .iter()
3203 .collect();
3204 apply_logic_op(&schema, &a, &b, Operator::Lt, expected).unwrap();
3205 }
3206
3207 #[test]
3208 fn lt_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…