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

Function prune_bool_column_eq_true

datafusion/pruning/src/pruning_predicate.rs:3924–3934  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3922
3923 #[test]
3924 fn prune_bool_column_eq_true() {
3925 let (schema, statistics, expected_true, _) = bool_setup();
3926
3927 prune_with_expr(
3928 // b1 = true
3929 col("b1").eq(lit(true)),
3930 &schema,
3931 &statistics,
3932 &expected_true,
3933 );
3934 }
3935
3936 #[test]
3937 fn prune_bool_not_column_eq_true() {

Callers

nothing calls this directly

Calls 5

bool_setupFunction · 0.85
prune_with_exprFunction · 0.85
colFunction · 0.50
litFunction · 0.50
eqMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…