Skip to content

Commit

Permalink
fix: Error node should be on top (#19045)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 authored Oct 1, 2024
1 parent 9ee3fa2 commit 26a364c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-plan/src/plans/conversion/dsl_to_ir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pub fn to_alp(
);
let location = format!("{}", plan.display());
Err(err.wrap_msg(|msg| {
format!("{msg}\n\nResolved plan until failure:\n\n{location}\n\t---> FAILED HERE RESOLVING {node_name} <---")
format!("{msg}\n\nResolved plan until failure:\n\n\t---> FAILED HERE RESOLVING {node_name} <---\n{location}")
}))
} else {
Err(err)
Expand Down

0 comments on commit 26a364c

Please sign in to comment.