Daniel Becker has uploaded this change for review. (
http://gerrit.cloudera.org:8080/19426
Change subject: IMPALA-11840: Error with joining unnest with views
......................................................................
IMPALA-11840: Error with joining unnest with views
Queries fail when an array is taken from a view, unnested in another
view and then the result queried in an outer query.
For example:
use functional_parquet;
with sub as (
select id, arr1.item unnested_arr
from complextypes_arrays_only_view,
complextypes_arrays_only_view.int_array_array arr1)
select id, unnested_arr from sub;
ERROR: IllegalStateException: null
The problem is that in CollectionTableRef.analyze(), if
- there is a source view and
- the collection ref is within a WITH clause and
- it is not in the select list
then 'desc_' is not set, but it has to be set in order for
TableRef.analyzeJoin() to succeed.
This commit solves the problem by assigning a value to 'desc_' also in
the above case.
Testing:
- Added regression tests in nested-types-runtime.test.
Change-Id: Ic52655631944913553a7e7d9e9169b93da46dde3
---
M fe/src/main/java/org/apache/impala/analysis/CollectionTableRef.java
M
testdata/workloads/functional-query/queries/QueryTest/nested-types-runtime.test
2 files changed, 64 insertions(+), 19 deletions(-)
git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/26/19426/1
--
To view, visit http://gerrit.cloudera.org:8080/19426
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings
Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic52655631944913553a7e7d9e9169b93da46dde3
Gerrit-Change-Number: 19426
Gerrit-PatchSet: 1
Gerrit-Owner: Daniel Becker <[email protected]>
Gerrit-Reviewer: Csaba Ringhofer <[email protected]>
Gerrit-Reviewer: Peter Rozsa <[email protected]>