comphead commented on issue #17857:
URL: https://github.com/apache/datafusion/issues/17857#issuecomment-3356891515

   arrow-rs method is supposed to panic in case of overflow 
   
   ```
       #[inline]
       pub fn append_value(&mut self, value: impl AsRef<T::Native>) {
           self.value_builder
               .extend_from_slice(value.as_ref().as_ref());
           self.null_buffer_builder.append(true);
           self.offsets_builder.push(self.next_offset());
       }
   ```
   
   we probably can come up with safer variant in arrow-rs and use it in DF


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