We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d8c39 commit 7f63d43Copy full SHA for 7f63d43
1 file changed
datafusion/physical-plan/src/union.rs
@@ -33,8 +33,8 @@ use super::{
33
metrics::{ExecutionPlanMetricsSet, MetricsSet},
34
};
35
use crate::execution_plan::{
36
- InvariantLevel, boundedness_from_children, check_default_invariants,
37
- emission_type_from_children,
+ CardinalityEffect, InvariantLevel, boundedness_from_children,
+ check_default_invariants, emission_type_from_children,
38
39
use crate::filter::FilterExec;
40
use crate::filter_pushdown::{
@@ -343,6 +343,10 @@ impl ExecutionPlan for UnionExec {
343
}
344
345
346
+ fn cardinality_effect(&self) -> CardinalityEffect {
347
+ CardinalityEffect::GreaterEqual
348
+ }
349
+
350
fn supports_limit_pushdown(&self) -> bool {
351
true
352
0 commit comments