Skip to content

Commit 83a0357

Browse files
committed
Adjusted for Views support.
1 parent 4f00a73 commit 83a0357

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/physical-plan/src/compile.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ fn compile_rel_expr(var: &mut impl VarLabel, ast: RelExpr) -> PhysicalPlan {
137137
lhs: Box::new(compile_rel_expr(var, *lhs)),
138138
rhs: Box::new(PhysicalPlan::TableScan(
139139
TableScan {
140-
schema: rhs_schema,
140+
schema: rhs_schema.inner(),
141141
limit: None,
142142
delta,
143143
},

0 commit comments

Comments
 (0)