Ayush Saxena created HIVE-26885:
-----------------------------------
Summary: Iceberg: Parquet Vectorized V2 reads fails with NPE
Key: HIVE-26885
URL: https://issues.apache.org/jira/browse/HIVE-26885
Project: Hive
Issue Type: Bug
Reporter: Ayush Saxena
Assignee: Ayush Saxena
In case the Iceberg Parquet table lands up having an empty batch, in that case
while fetching the row number, used for filtering leads to NPE.
The row number to block mapping is only done if the parquetSplit isn't null, so
in that case, here:
{code:java}
if (parquetInputSplit != null) {
initialize(parquetInputSplit, conf);
} {code}
row numbers aren't initialised, so we should skip fetching the row numbers later
--
This message was sent by Atlassian Jira
(v8.20.10#820010)