colommar opened a new issue, #9652:
URL: https://github.com/apache/arrow-datafusion/issues/9652
part of my rust project
```let ctx = SessionContext::new();
ctx.register_csv("example", "src/b.csv",
CsvReadOptions::new().has_header(true)).await?;
let df = ctx.sql("select * from example").await?;
df.show().await?;
```
top 3 lines of `src/b.csv`
```
date,time,name,num,target,money,pay_type,status
2024.03.15,12:02:02,POS消费,20240315115719080408,A食堂1楼大餐厅,14.50,现金,交易成功
2024.03.15,10:03:20,POS消费,20240315100247068511,北区西点房,4.00,现金,交易成功
```
error
```
Error: ArrowError(ParseError("Error while parsing value 20240315100247068511
for column 3 at line 2"), None)
error: process didn't exit successfully: `target\debug\rg.exe` (exit code: 1)
```
Could anyone try to help me to figure this problem out?
--
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]