Is your feature request related to a problem? Please describe.
Since the query engine has to convert local date times to absolute date times, we need to know the timezone. In most cases, it's best the user picks it.
Describe the solution you'd like
Set the TZ environment variable with one of the options from ZoneId.getAvailableZoneIds()
Is your feature request related to a problem? Please describe. Since the query engine has to convert local date times to absolute date times, we need to know the timezone. In most cases, it's best the user picks it.
Describe the solution you'd like Set the
TZ
environment variable with one of the options fromZoneId.getAvailableZoneIds()
Maybe a good default is
ZoneId.systemDefault()
.