File tree 1 file changed +3
-0
lines changed
datafusion/physical-plan/src
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -463,6 +463,7 @@ fn collect_new_statistics(
463
463
null_count : Precision :: Exact ( 0 ) ,
464
464
max_value : Precision :: Exact ( ScalarValue :: Null ) ,
465
465
min_value : Precision :: Exact ( ScalarValue :: Null ) ,
466
+ sum_value : Precision :: Exact ( ScalarValue :: Null ) ,
466
467
distinct_count : Precision :: Exact ( 0 ) ,
467
468
} ;
468
469
} ;
@@ -1090,12 +1091,14 @@ mod tests {
1090
1091
ColumnStatistics {
1091
1092
min_value: Precision :: Exact ( ScalarValue :: Null ) ,
1092
1093
max_value: Precision :: Exact ( ScalarValue :: Null ) ,
1094
+ sum_value: Precision :: Exact ( ScalarValue :: Null ) ,
1093
1095
distinct_count: Precision :: Exact ( 0 ) ,
1094
1096
null_count: Precision :: Exact ( 0 ) ,
1095
1097
} ,
1096
1098
ColumnStatistics {
1097
1099
min_value: Precision :: Exact ( ScalarValue :: Null ) ,
1098
1100
max_value: Precision :: Exact ( ScalarValue :: Null ) ,
1101
+ sum_value: Precision :: Exact ( ScalarValue :: Null ) ,
1099
1102
distinct_count: Precision :: Exact ( 0 ) ,
1100
1103
null_count: Precision :: Exact ( 0 ) ,
1101
1104
} ,
You can’t perform that action at this time.
0 commit comments