-
Notifications
You must be signed in to change notification settings - Fork 244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix failed cases for non-utc time zone #10060
Fix failed cases for non-utc time zone #10060
Conversation
Signed-off-by: Chong Gao <[email protected]>
build |
build |
1 similar comment
build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, premerge failed because #9671
c246de4
build |
To run with non-UTC time zone, set TZ environment variable, | ||
For example: | ||
```shell | ||
$ TZ=Iran ./integration_tests/run_pyspark_from_build.sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it could be better to cover other timezones at least one case for DST.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
build |
closes #10055
The 2 failed cases were added recently.
Because premerge does not cover all the cases for non-utc, so it passed in premerge, but failed in nightly CI.
Add
ProjectExec
tonon_utc_allow
to fix.Signed-off-by: Chong Gao [email protected]