Skip to content

Commit

Permalink
Update src/frontend/src/optimizer/plan_node/stream_keyed_merge.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Eric Fu <eric@singularity-data.com>
  • Loading branch information
kwannoel and fuyufjh authored Jul 24, 2024
1 parent 83ecdd0 commit 2c0a899
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/frontend/src/optimizer/plan_node/stream_keyed_merge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ impl StreamKeyedMerge {
if let Some(lhs_idx) = o2i_lhs.try_map(output_idx) {
schema_fields.push(lhs_input.schema().fields()[lhs_idx].clone());
} else if let Some(rhs_idx) = o2i_rhs.try_map(output_idx) {
println!("rhs schema: {:?}", rhs_input.schema().fields());
schema_fields.push(rhs_input.schema().fields()[rhs_idx].clone());
} else {
bail!(
Expand Down

0 comments on commit 2c0a899

Please sign in to comment.