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

Function gt_op_bool

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

Source from the content-addressed store, hash-verified

3313
3314 #[test]
3315 fn gt_op_bool() {
3316 let (schema, a, b) = bool_test_arrays();
3317 let expected = [
3318 Some(false),
3319 None,
3320 Some(true),
3321 None,
3322 None,
3323 None,
3324 Some(false),
3325 None,
3326 Some(false),
3327 ]
3328 .iter()
3329 .collect();
3330 apply_logic_op(&schema, &a, &b, Operator::Gt, expected).unwrap();
3331 }
3332
3333 #[test]
3334 fn gt_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…