We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 331c09d commit a893cffCopy full SHA for a893cff
2 files changed
crates/execution/src/pipelined.rs
@@ -186,6 +186,7 @@ impl ViewProject {
186
let mut n = 0;
187
let mut bytes_scanned = 0;
188
self.inner.execute(tx, metrics, &mut |row| match row {
189
+ Row::Null => Ok(()),
190
Row::Ptr(ptr) => {
191
n += 1;
192
let col_list = ColList::from_iter(self.num_private_cols..self.num_cols);
crates/physical-plan/src/plan.rs
@@ -586,6 +586,7 @@ impl PhysicalPlan {
586
lhs_field,
587
rhs_field,
588
unique,
589
+ outer,
590
},
591
semi,
592
) => Self::HashJoin(
@@ -595,6 +596,7 @@ impl PhysicalPlan {
595
596
597
598
599
600
601
602
),
0 commit comments