alamb commented on issue #3255:
URL:
https://github.com/apache/arrow-datafusion/issues/3255#issuecomment-1232941265
For what it is worth, here is what postgres does (mostly what
@avantgardnerio has proposed). Note there is an `=` in `SET TIMEONE=''`;
```sql
psql (14.4)
Type "help" for help.
alamb=# show timezone
alamb-# ;
TimeZone
------------------
America/New_York
(1 row)
alamb=# set timezone='UTC+08';
SET
alamb=# show timezone;
TimeZone
----------
UTC+08
(1 row)
alamb=# set timezone='US/Mountain';
SET
alamb=# show timezone;
TimeZone
-------------
US/Mountain
(1 row)
```
--
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]