jayzhan211 commented on issue #13624:
URL: https://github.com/apache/datafusion/issues/13624#issuecomment-2513272247

   I can't reproduce this in main branch, probably is fixed
   
   ```rust
       #[test]
       fn test123() -> Result<()> {
           let mut buf = vec![];
           let batch = record_batch!(
               ("a", Int64, [1, 2, 3]),
               ("b", Float64, [Some(4.0), None, Some(5.0)]),
               ("c", Boolean, [true, false, true]),
               ("d", Utf8View, ["alpha", "beta", "gamma"])
           )
           .unwrap();
   
           let mut writer = LineDelimitedWriter::new(Cursor::new(&mut buf));
           writer.write_batches(&[&batch]).unwrap();
   
           Ok(())
       }
   ```


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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to