andygrove commented on code in PR #1890:
URL: https://github.com/apache/arrow-rs/pull/1890#discussion_r899411224


##########
arrow/src/record_batch.rs:
##########
@@ -138,6 +138,20 @@ impl RecordBatch {
                 )
             })?;
 
+        for (c, f) in columns.iter().zip(&schema.fields) {
+            if !f.is_nullable() && c.null_count() > 0 {
+                if f.name().len() == 0 {
+                    // hacky workaround for known issue with dictionary IPC 
encoding
+                    // https://github.com/apache/arrow-rs/issues/1892

Review Comment:
   See https://github.com/apache/arrow-rs/issues/1892



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