Zoltan Borok-Nagy has uploaded this change for review. ( 
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
---
M tests/query_test/test_scanners_fuzz.py
1 file changed, 6 insertions(+), 3 deletions(-)



  git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/28/15528/1
--
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: newchange
Gerrit-Change-Id: I8e4cc231f38fe84ebea982b82021458621fe992f
Gerrit-Change-Number: 15528
Gerrit-PatchSet: 1
Gerrit-Owner: Zoltan Borok-Nagy <borokna...@cloudera.com>

Reply via email to