IMPALA-5257: test_seq_writer_hive_compatibility fails on local file system build
TestTableWriters.test_seq_writer_hive_compatibility test introduced in IMPALA-3079 had to be skipped for non-HDFS filesystems. Change-Id: Ic7dbe2529818865f871b66d78642ed956d1ee039 Reviewed-on: http://gerrit.cloudera.org:8080/6746 Reviewed-by: Michael Ho <[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/2e637528 Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/2e637528 Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/2e637528 Branch: refs/heads/master Commit: 2e63752858d71cc745534367a686980e060a8180 Parents: 1213843 Author: Attila Jeges <[email protected]> Authored: Thu Apr 27 13:46:36 2017 +0200 Committer: Impala Public Jenkins <[email protected]> Committed: Fri Apr 28 06:20:29 2017 +0000 ---------------------------------------------------------------------- tests/query_test/test_compressed_formats.py | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/2e637528/tests/query_test/test_compressed_formats.py ---------------------------------------------------------------------- diff --git a/tests/query_test/test_compressed_formats.py b/tests/query_test/test_compressed_formats.py index 36dc427..efb2c2b 100644 --- a/tests/query_test/test_compressed_formats.py +++ b/tests/query_test/test_compressed_formats.py @@ -147,6 +147,9 @@ class TestTableWriters(ImpalaTestSuite): def test_seq_writer(self, vector, unique_database): self.run_test_case('QueryTest/seq-writer', vector, unique_database) + @SkipIfS3.hive + @SkipIfIsilon.hive + @SkipIfLocal.hive def test_seq_writer_hive_compatibility(self, vector, unique_database): self.client.execute('set ALLOW_UNSUPPORTED_FORMATS=1') # Write sequence files with different compression codec/compression mode and then read
