-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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: Fix timestamp timezone in Parquet write #11949
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for meta-velox canceled.
|
@@ -645,6 +645,7 @@ struct WriterOptions { | |||
std::function<std::unique_ptr<dwio::common::FlushPolicy>()> | |||
flushPolicyFactory; | |||
|
|||
std::string sessionTimezoneName; |
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.
Can we keep either sessionTimezoneName
or sessionTimezone
but not both?
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.
Removed 'sessionTimezone' as it is not in use. Thanks!
3071568
to
f5df57b
Compare
@Yuhta Above comment is fixed. Could you help review again? Thanks! |
Session timezone is in 'QueryConfig' and cannot be accessed through
'sessionProperties' and 'hiveConfig'. This PR retrieves the session timezone
from the connector query context which stores the 'sessionTimezone' of the
query config in driver context.