You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "viirya (via GitHub)" <gi...@apache.org> on 2023/03/09 03:44:49 UTC

[GitHub] [arrow-rs] viirya commented on a diff in pull request #3822: Minor: Fix error message for CSV formatting

viirya commented on code in PR #3822:
URL: https://github.com/apache/arrow-rs/pull/3822#discussion_r1130378843


##########
arrow-csv/src/writer.rs:
##########
@@ -169,7 +169,7 @@ impl<W: Write> Writer<W> {
                 buffer.clear();
                 converter.value(row_idx).write(&mut buffer).map_err(|e| {
                     ArrowError::CsvError(format!(
-                        "Error formatting row {} and column {}: {e}",
+                        "Error processing row {}, col {}: {e}",

Review Comment:
   I think it is `formatting` because the error comes from `ArrayFormater`.  `processing` is okay though. The change of row and col looks okay too.



-- 
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-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org