You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/02/01 09:54:08 UTC

[GitHub] [arrow-rs] tustvold commented on a change in pull request #1214: Batch multiple records in ArrowWriter

tustvold commented on a change in pull request #1214:
URL: https://github.com/apache/arrow-rs/pull/1214#discussion_r796427534



##########
File path: arrow/src/util/pretty.rs
##########
@@ -74,7 +74,7 @@ fn create_table(results: &[RecordBatch]) -> Result<Table> {
             let mut cells = Vec::new();
             for col in 0..batch.num_columns() {
                 let column = batch.column(col);
-                cells.push(Cell::new(&array_value_to_string(&column, row)?));
+                cells.push(Cell::new(&array_value_to_string(column, row)?));

Review comment:
       These changes are needed because clippy now finds this file as the prettyprint feature is enabled by parquet




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