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

Method null_treatment

datafusion/expr/src/expr_fn.rs:903–909  ·  view source on GitHub ↗

Add `RESPECT NULLS` or `IGNORE NULLS`

(
        mut self,
        null_treatment: impl Into<Option<NullTreatment>>,
    )

Source from the content-addressed store, hash-verified

901
902 /// Add `RESPECT NULLS` or `IGNORE NULLS`
903 fn null_treatment(
904 mut self,
905 null_treatment: impl Into<Option<NullTreatment>>,
906 ) -> ExprFuncBuilder {
907 self.null_treatment = null_treatment.into();
908 self
909 }
910
911 fn partition_by(mut self, partition_by: Vec<Expr>) -> ExprFuncBuilder {
912 self.partition_by = Some(partition_by);

Callers 5

parse_exprFunction · 0.80
roundtrip_windowFunction · 0.80
window_using_aggregatesFunction · 0.80

Calls 4

newFunction · 0.85
AggregateClass · 0.85
WindowClass · 0.85
intoMethod · 0.45