We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1460356 commit 2bb5881Copy full SHA for 2bb5881
datafusion/physical-expr/src/projection.rs
@@ -1863,7 +1863,9 @@ pub(crate) mod tests {
1863
1864
let expected = Statistics {
1865
num_rows: Precision::Exact(5),
1866
- total_byte_size: Precision::Exact(23),
+ // Because there is a variable length Utf8 column we cannot calculate exact byte size after projection
1867
+ // Thus we set it to Inexact (originally it was Exact(23))
1868
+ total_byte_size: Precision::Inexact(23),
1869
column_statistics: vec![
1870
ColumnStatistics {
1871
distinct_count: Precision::Exact(1),
0 commit comments