jayzhan211 commented on code in PR #8261:
URL: https://github.com/apache/arrow-datafusion/pull/8261#discussion_r1398179537


##########
datafusion/common/src/scalar.rs:
##########
@@ -2889,12 +2890,21 @@ impl fmt::Display for ScalarValue {
                 )?,
                 None => write!(f, "NULL")?,
             },
-            ScalarValue::List(arr) | ScalarValue::FixedSizeList(arr) => write!(
-                f,
-                "{}",
-                arrow::util::pretty::pretty_format_columns("col", 
&[arr.to_owned()])
-                    .unwrap()
-            )?,
+            ScalarValue::List(arr) | ScalarValue::FixedSizeList(arr) => {
+                // TODO: Remove NullArray
+                // There are NullArray(0) currently, so we need to check the 
length

Review Comment:
   We may file an ticket to track 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