mirror of
https://github.com/apache/impala.git
synced 2025-12-19 18:12:08 -05:00
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>
16 lines
301 B
Plaintext
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
|
|
====
|