Repository: incubator-impala Updated Branches: refs/heads/master dae5eb8d8 -> 0bddf0fb6
IMPALA-6040: skip test_multi_compression_types where Hive isn't supported A recent commit "IMPALA-5448: fix invalid number of splits reported in Parquet scan node" neglected to account for the fact that in some environments, Impala runs without Hive. The typical pattern for tests that use Hive is skip them if they are executed against such environments. Change-Id: I3ad4b72839f8ac3bcb824287d02dd6964eea3e3e Reviewed-on: http://gerrit.cloudera.org:8080/8259 Reviewed-by: Michael Brown <[email protected]> Tested-by: Impala Public Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/0bddf0fb Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/0bddf0fb Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/0bddf0fb Branch: refs/heads/master Commit: 0bddf0fb635abd8ef90c0385a2972ef4bf2ce75c Parents: dae5eb8 Author: Michael Brown <[email protected]> Authored: Wed Oct 11 10:04:27 2017 -0700 Committer: Impala Public Jenkins <[email protected]> Committed: Thu Oct 12 02:16:20 2017 +0000 ---------------------------------------------------------------------- tests/query_test/test_scanners.py | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/0bddf0fb/tests/query_test/test_scanners.py ---------------------------------------------------------------------- diff --git a/tests/query_test/test_scanners.py b/tests/query_test/test_scanners.py index ca7cd6b..954830a 100644 --- a/tests/query_test/test_scanners.py +++ b/tests/query_test/test_scanners.py @@ -327,6 +327,10 @@ class TestParquet(ImpalaTestSuite): assert len(result.data) == 1 assert "4294967294" in result.data + @SkipIfADLS.hive + @SkipIfIsilon.hive + @SkipIfLocal.hive + @SkipIfS3.hive def test_multi_compression_types(self, vector, unique_database): """IMPALA-5448: Tests that parquet splits with multi compression types are counted correctly. Cases tested:
