Dandandan commented on code in PR #6921:
URL: https://github.com/apache/arrow-rs/pull/6921#discussion_r1935209149


##########
parquet/src/arrow/array_reader/byte_view_array.rs:
##########
@@ -683,7 +685,7 @@ impl ByteViewArrayDecoderDelta {
 
 /// Check that `val` is a valid UTF-8 sequence
 pub fn check_valid_utf8(val: &[u8]) -> Result<()> {
-    match std::str::from_utf8(val) {
+    match simdutf8::basic::from_utf8(val) {

Review Comment:
   Ah ok, yeah this is a different one than I mentioned in 
https://github.com/apache/arrow-rs/issues/7014 , sorry for the confusion



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