We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Query is failing when hive.parquet_dereference_pushdown_enabled=true
hive.parquet_dereference_pushdown_enabled=true
Storage - S3
Presto Version - 0.292-SNAPSHOT
presto> CREATE TABLE test_parquet_pushdown_hive ( id BIGINT, data1 ROW(nested_field1 varchar, nested_field2 INT) ) WITH (format = 'PARQUET'); presto> INSERT INTO test_parquet_pushdown_hive VALUES (1, CAST(ROW('value1', 100) AS ROW(nested_field1 varchar, nested_field2 INT))), (2, CAST(ROW('value2', 200) AS ROW(nested_field1 varchar, nested_field2 INT))); presto> SET SESSION hive.parquet_dereference_pushdown_enabled=true; presto> SELECT data1.nested_field1 FROM hive.reetika_testdb.test_parquet_pushdown_hive;
VeloxUserError: getColumnName(subfield) == handle->name() (data1 vs. data1$_$_$nested_field1) Required subfield does not match column name
The text was updated successfully, but these errors were encountered:
Velox case open too facebookincubator/velox#8281
Sorry, something went wrong.
No branches or pull requests
Query is failing when
hive.parquet_dereference_pushdown_enabled=true
Storage - S3
Presto Version - 0.292-SNAPSHOT
Steps to Reproduce
Error
The text was updated successfully, but these errors were encountered: