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


##########
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:
   I just checked and this function goes away if `main` is merged in.



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