You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@soulmachine Yes. We saw the same problem and had to disable hive.parquet.use-column-names to make it work.
Another case-sensitive issue, which does not work irrespective of above flag is with nested structs. Consider abc STRUCT<withCaps:STRING, without_caps:STRING>
as part of a table. Accessing abc.withCaps from Presto always generates SemanticException since it can not resolve withcaps field.
I have a Hive external table based on Parquet files on S3, the table schema is:
My query is :
This query can get some rows if run in Hive CLI, but it returns zero rows if run in Presto CLI.
I've set
hive.parquet.use-column-names=true
in fileetc/catalog/hive.properties
.I guess my problem is caused by this issue Add support for case sensitive identifiers #2863
Am I correct ?
The text was updated successfully, but these errors were encountered: