Impala Public Jenkins has submitted this change and it was merged. ( 
http://gerrit.cloudera.org:8080/15528 )

Change subject: Fix test_fuzz_nested_types
......................................................................

Fix test_fuzz_nested_types

test_fuzz_nested_types had queries that didn't parse successfully
because they had duplicated names in an inline view:

select count(*) from (
  select ... a.pos, ... b.pos
  from ...
);

We have 'a.pos' and 'b.pos' here but Impala still considers those as
duplicated names, hence I added aliases for the duplicated fields, e.g.:

   a.pos as apos

Now that the queries pase successfully they start the scanners on
corrupted files which is the goal of this test.

Change-Id: I8e4cc231f38fe84ebea982b82021458621fe992f
Reviewed-on: http://gerrit.cloudera.org:8080/15528
Reviewed-by: Impala Public Jenkins <impala-public-jenk...@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenk...@cloudera.com>
---
M tests/query_test/test_scanners_fuzz.py
1 file changed, 6 insertions(+), 3 deletions(-)

Approvals:
  Impala Public Jenkins: Looks good to me, approved; Verified

--
To view, visit http://gerrit.cloudera.org:8080/15528
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I8e4cc231f38fe84ebea982b82021458621fe992f
Gerrit-Change-Number: 15528
Gerrit-PatchSet: 5
Gerrit-Owner: Zoltan Borok-Nagy <borokna...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <impala-public-jenk...@cloudera.com>
Gerrit-Reviewer: Quanlong Huang <huangquanl...@gmail.com>
Gerrit-Reviewer: Zoltan Borok-Nagy <borokna...@cloudera.com>

Reply via email to