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

Function gt_eq_op_bool

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

Source from the content-addressed store, hash-verified

3376
3377 #[test]
3378 fn gt_eq_op_bool() {
3379 let (schema, a, b) = bool_test_arrays();
3380 let expected = [
3381 Some(true),
3382 None,
3383 Some(true),
3384 None,
3385 None,
3386 None,
3387 Some(false),
3388 None,
3389 Some(true),
3390 ]
3391 .iter()
3392 .collect();
3393 apply_logic_op(&schema, &a, &b, Operator::GtEq, expected).unwrap();
3394 }
3395
3396 #[test]
3397 fn gt_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…