rebasedming opened a new issue, #9580:
URL: https://github.com/apache/arrow-datafusion/issues/9580
### Is your feature request related to a problem or challenge?
I would like `SqlToRel` to be able to construct a `LogicalPlan` from the a
query string containing the `AT TIME ZONE` clause. Right now it's unsupported:
```sql
create table t (a timestamptz);
insert into t values('2000-12-01 04:04:12');
select a AT TIME ZONE 'UTC' from t;
This feature is not implemented: Unsupported ast node in sqltorel:
AtTimeZone { timestamp: Identifier(Ident { value: "a", quote_style: None }),
time_zone: "UTC" }
```
### Describe the solution you'd like
`AT TIME ZONE` clauses can be parsed and converted into logical plans.
### Describe alternatives you've considered
_No response_
### 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]