Skip to content

Commit

Permalink
chore: per review
Browse files Browse the repository at this point in the history
  • Loading branch information
discord9 committed Sep 2, 2024
1 parent b4678e2 commit 140781b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/flow/src/expr/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,19 +106,19 @@ pub enum EvalError {
location: Location,
},

#[snafu(display("Arrow error: {raw:?}, context: {context}"))]
#[snafu(display("Arrow error: {error:?}, context: {context}"))]
Arrow {
#[snafu(source)]
raw: ArrowError,
error: ArrowError,
context: String,
#[snafu(implicit)]
location: Location,
},

#[snafu(display("DataFusion error: {raw:?}, context: {context}"))]
#[snafu(display("DataFusion error: {error:?}, context: {context}"))]
Datafusion {
#[snafu(source)]
raw: DataFusionError,
error: DataFusionError,
context: String,
#[snafu(implicit)]
location: Location,
Expand Down

0 comments on commit 140781b

Please sign in to comment.