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

Function lt_eq_op_bool

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

Source from the content-addressed store, hash-verified

3250
3251 #[test]
3252 fn lt_eq_op_bool() {
3253 let (schema, a, b) = bool_test_arrays();
3254 let expected = [
3255 Some(true),
3256 None,
3257 Some(false),
3258 None,
3259 None,
3260 None,
3261 Some(true),
3262 None,
3263 Some(true),
3264 ]
3265 .iter()
3266 .collect();
3267 apply_logic_op(&schema, &a, &b, Operator::LtEq, expected).unwrap();
3268 }
3269
3270 #[test]
3271 fn lt_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…