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

Method with

datafusion/pruning/src/pruning_predicate.rs:2284–2292  ·  view source on GitHub ↗
(
            mut self,
            name: impl Into<String>,
            container_stats: ContainerStats,
        )

Source from the content-addressed store, hash-verified

2282 }
2283
2284 fn with(
2285 mut self,
2286 name: impl Into<String>,
2287 container_stats: ContainerStats,
2288 ) -> Self {
2289 let col = Column::from_name(name.into());
2290 self.stats.insert(col, container_stats);
2291 self
2292 }
2293
2294 /// Add null counts for the specified column.
2295 /// There must be the same number of null counts as

Calls 2

intoMethod · 0.45
insertMethod · 0.45