-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
timestamp column with Parquet format do not compatible with Hive #11867
Comments
This is a known issue. See #7122 and the roadmap linked there. |
Sorry, I didn't find any official release of 0.208e. Do you mean I need to try 0.208e for Starburst Distribution of Presto? |
Apologies for being to brief. Yes, this Starburst Presto 0.208e is what i meant. @maxwellzdm please note that i view this patch as still in experimental phase (therefore you need to enable it explicitly with |
@findepi I've tried
But It still seems to be not work. |
By the way, this issue only occurs when I insert into a Hive table with parquet format. |
This issue has been automatically marked as stale because it has not had any activity in the last 2 years. If you feel that this issue is important, just comment and the stale tag will be removed; otherwise it will be closed in 7 days. This is an attempt to ensure that our open issues remain valuable and relevant so that we can keep track of what needs to be done and prioritize the right things. |
Steps to reproduce:
Set up Presto with Hive connector
Create Table a partitioned table with parquet format
create table tmp.presto_test_parquet_v2 ( event_time timestamp, event_time_str varchar, dt varchar) with ( partitioned_by = array['dt'], format = 'parquet')
insert data with current timestamp
insert into tmp.presto_test_parquet_v2 values ( localtimestamp , cast(localtimestamp as varchar), '0');
select from Presto
But When I select data from Hive, I got data with wrong timezone
Presto version: 0.212
Hive version: 1.1.0-cdh5.13.3
The text was updated successfully, but these errors were encountered: