Files
impala/testdata/workloads/functional-query/queries/QueryTest/hdfs-erasure-coding.test
Tianyi Wang 61e6a47776 IMPALA-7236: Fix the parsing of ALLOW_ERASURE_CODED_FILES
This patch adds a missing "break" statement in a switch statement
changed by IMPALA-7102.
Also fixes an non-deterministic test case.

Change-Id: Ife1e791541e3f4fed6bec00945390c7d7681e824
Reviewed-on: http://gerrit.cloudera.org:8080/10857
Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
2018-07-03 23:49:44 +00:00

16 lines
301 B
Plaintext

====
---- QUERY
set allow_erasure_coded_files=false;
select count(*) from functional.alltypes;
---- CATCH
ImpalaRuntimeException: Scanning of HDFS erasure-coded file
====
---- QUERY
set allow_erasure_coded_files=true;
select count(*) from functional.alltypes;
---- RESULTS
7300
---- TYPES
BIGINT
====