alamb commented on code in PR #5000: URL: https://github.com/apache/arrow-datafusion/pull/5000#discussion_r1082445576
########## datafusion/common/src/error.rs: ########## @@ -34,7 +34,7 @@ use parquet::errors::ParquetError; use sqlparser::parser::ParserError; /// Result type for operations that could result in an [DataFusionError] -pub type Result<T> = result::Result<T, DataFusionError>; +pub type Result<T, E = DataFusionError> = result::Result<T, E>; Review Comment: This is the actual change as I undertand -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
