alamb commented on code in PR #2885: URL: https://github.com/apache/arrow-datafusion/pull/2885#discussion_r925982709
########## datafusion/common/src/error.rs: ########## @@ -83,6 +83,30 @@ pub enum DataFusionError { #[cfg(feature = "jit")] /// Error occurs during code generation JITError(ModuleError), + /// Error with context + Context(String, Box<DataFusionError>), +} + +#[macro_export] +macro_rules! context { + ($desc:expr, $err:expr) => { + datafusion_common::DataFusionError::Context( + format!("{} at {}:{}", $desc, file!(), line!()), + Box::new($err), + ) + }; +} + +#[macro_export] +macro_rules! plan_err { Review Comment: I think the macro adding file and line is good -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org