Skip to content
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

[native] Query is failing when hive.parquet_dereference_pushdown_enabled=true #24746

Open
agrawalreetika opened this issue Mar 18, 2025 · 1 comment
Labels
bug iceberg Apache Iceberg related

Comments

@agrawalreetika
Copy link
Member

Query is failing when hive.parquet_dereference_pushdown_enabled=true

Storage - S3

Presto Version - 0.292-SNAPSHOT

Steps to Reproduce

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;

Error

VeloxUserError: getColumnName(subfield) == handle->name() (data1 vs. data1$_$_$nested_field1) Required subfield does not match column name
@nmahadevuni
Copy link
Member

Velox case open too facebookincubator/velox#8281

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug iceberg Apache Iceberg related
Projects
Status: 🆕 Unprioritized
Status: 🆕 Unprioritized
Development

No branches or pull requests

3 participants