alamb commented on code in PR #4276:
URL: https://github.com/apache/arrow-rs/pull/4276#discussion_r1204751104
##########
parquet/src/arrow/array_reader/null_array.rs:
##########
@@ -42,6 +43,17 @@ where
record_reader: RecordReader<T>,
}
+impl<T> Debug for NullArrayReader<T>
+where
+ T: DataType,
+ T::T: ScalarValue,
+{
+ fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
+ f.debug_struct("NullArrayReader<T>")
Review Comment:
I freely admit I got lazy for some of these impls...
--
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]