jayzhan211 commented on issue #15756:
URL: https://github.com/apache/datafusion/issues/15756#issuecomment-2818157270
We need to support delimeter with &[u8] or similar in arrow's csv reader.
You only take the first u8 so obviously there is error.
```
let r = "╦".as_bytes();
println!("r: {:?}", r);
let rf = r.first();
println!("rf: {:?}", rf);
```
```
r: [226, 149, 166]
rf: Some(226)
```
--
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]