silence-coding commented on a change in pull request #2113:
URL: https://github.com/apache/arrow-datafusion/pull/2113#discussion_r837144987



##########
File path: datafusion/core/src/physical_plan/file_format/parquet.rs
##########
@@ -515,10 +516,10 @@ fn read_partition(
                     let err_msg =
                         format!("Error reading batch from {}: {}", 
partitioned_file, e);
                     // send error to operator
-                    send_result(
+                    let _ = send_result(
                         &response_tx,
                         Err(ArrowError::ParquetError(err_msg.clone())),
-                    )?;

Review comment:
       Here the send_result error should not overwrite the original ArrowError, 
so I ignored it.




-- 
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]


Reply via email to