ACking-you opened a new issue, #7604:
URL: https://github.com/apache/arrow-datafusion/issues/7604
### Describe the bug
When I use TIMESTAMP with time zone, the following error occurs:
```
Invalid argument error: column types must match schema types, expected
Timestamp(Millisecond, Some("+08:00")) but found Timestamp(Millisecond, None)
at column index 1
```
### To Reproduce
schema:
```rust
Schema::new(vec![
Field::new("a", DataType::Timestamp(TimeUnit::Millisecond,
Some("+08:00".into())),true),
Field::new("b", DataType::UInt32, true).
])
```
sql:
```sql
select min(a),ip from jason_test_timestamp_type group by b
```
### Expected behavior
just working
### Additional context
_No response_
--
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]