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

Method to_inexact

datafusion/common/src/stats.rs:132–137  ·  view source on GitHub ↗

Demotes the precision state from exact to inexact (if present).

(self)

Source from the content-addressed store, hash-verified

130
131 /// Demotes the precision state from exact to inexact (if present).
132 pub fn to_inexact(self) -> Self {
133 match self {
134 Precision::Exact(value) => Precision::Inexact(value),
135 _ => self,
136 }
137 }
138}
139
140impl Precision<usize> {

Callers 13

partition_statisticsMethod · 0.80
statistics_helperMethod · 0.80
collect_new_statisticsFunction · 0.80
estimate_num_rowsMethod · 0.80
max_distinct_countFunction · 0.80
statisticsMethod · 0.80
with_fetchMethod · 0.80

Calls 3

collectMethod · 0.80
mapMethod · 0.45
into_iterMethod · 0.45