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 0f0098e commit 7d54247Copy full SHA for 7d54247
datafusion/physical-plan/src/joins/hash_join.rs
@@ -173,7 +173,7 @@ impl SharedBoundsAccumulator {
173
left_child.output_partitioning().partition_count()
174
}
175
// Default value, will be resolved during optimization (does not exist once `execute()` is called; will be replaced by one of the other two)
176
- PartitionMode::Auto => 1,
+ PartitionMode::Auto => unreachable!("PartitionMode::Auto should not be present at execution time. This is a bug in DataFusion, please report it!"),
177
};
178
Self {
179
bounds: Mutex::new(Vec::with_capacity(expected_calls)),
0 commit comments