jayzhan211 commented on issue #10368:
URL: https://github.com/apache/datafusion/issues/10368#issuecomment-2095244272

   btw, I think there might be some bug in datafusion, the behavior is unlike 
Postgres
   ```
   
   statement ok
   set datafusion.catalog.information_schema = true
   
   statement ok
   SET TIME ZONE = '+00:00'
   
   query TT
   SHOW TIMEZONE
   ----
   datafusion.execution.time_zone +00:00
   
   query P
   select '2020-11-30T08:00:00.000Z'::timestamp at time zone 'Europe/Brussels';
   ----
   2020-11-30T08:00:00+01:00
   
   statement ok
   SET TIME ZONE = '+01:00'
   
   query P
   select '2020-11-30T08:00:00.000Z'::timestamp at time zone 'Europe/Brussels';
   ----
   2020-11-30T08:00:00+01:00
   
   statement ok
   SET TIME ZONE = '+08:00'
   
   query P
   select '2020-11-30T08:00:00.000Z'::timestamp at time zone 'Europe/Brussels';
   ----
   2020-11-30T08:00:00+01:00
   
   ```


-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to