Repository: incubator-impala Updated Branches: refs/heads/master d806d5fc2 -> 39e8cf313
IMPALA-5640: re-enable gzip for parquet insert tests This addresses a gap in test coverage. There are no known bugs here so we expect this to work. Testing: Ran exhaustive build. Change-Id: I4bea8bac37bb1e72f3ba0b2e162e6fc544aec8a8 Reviewed-on: http://gerrit.cloudera.org:8080/7398 Reviewed-by: Henry Robinson <[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/5b670f49 Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/5b670f49 Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/5b670f49 Branch: refs/heads/master Commit: 5b670f49b62db90c0eca28dfc8c5c9dc9c933cd6 Parents: d806d5f Author: Tim Armstrong <[email protected]> Authored: Mon Jul 10 14:34:08 2017 -0700 Committer: Impala Public Jenkins <[email protected]> Committed: Wed Jul 12 00:18:44 2017 +0000 ---------------------------------------------------------------------- tests/query_test/test_insert.py | 3 +-- tests/query_test/test_insert_parquet.py | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/5b670f49/tests/query_test/test_insert.py ---------------------------------------------------------------------- diff --git a/tests/query_test/test_insert.py b/tests/query_test/test_insert.py index 176e891..d2db9c6 100644 --- a/tests/query_test/test_insert.py +++ b/tests/query_test/test_insert.py @@ -32,8 +32,7 @@ from tests.common.test_result_verifier import ( parse_result_rows) from tests.common.test_vector import ImpalaTestDimension -# TODO: Add Gzip back. IMPALA-424 -PARQUET_CODECS = ['none', 'snappy'] +PARQUET_CODECS = ['none', 'snappy', 'gzip'] class TestInsertQueries(ImpalaTestSuite): @classmethod http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/5b670f49/tests/query_test/test_insert_parquet.py ---------------------------------------------------------------------- diff --git a/tests/query_test/test_insert_parquet.py b/tests/query_test/test_insert_parquet.py index 908e50a..7cd23f7 100644 --- a/tests/query_test/test_insert_parquet.py +++ b/tests/query_test/test_insert_parquet.py @@ -36,8 +36,7 @@ from tests.common.test_vector import ImpalaTestDimension from tests.util.filesystem_utils import get_fs_path from tests.util.get_parquet_metadata import get_parquet_metadata, decode_stats_value -# TODO: Add Gzip back. IMPALA-424 -PARQUET_CODECS = ['none', 'snappy'] +PARQUET_CODECS = ['none', 'snappy', 'gzip'] class RoundFloat():
