We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffc203f commit 94726ccCopy full SHA for 94726cc
datafusion/physical-optimizer/src/pruning.rs
@@ -1111,9 +1111,9 @@ impl PruningStatistics for PrunableStatistics {
1111
}
1112
1113
if has_null_count {
1114
- return Some(Arc::new(UInt64Array::from(values)));
+ Some(Arc::new(UInt64Array::from(values)))
1115
} else {
1116
- return None;
+ None
1117
1118
1119
@@ -1143,9 +1143,9 @@ impl PruningStatistics for PrunableStatistics {
1143
1144
1145
if has_row_count {
1146
1147
1148
1149
1150
1151
0 commit comments