| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| # Targeted tests for decimal type. |
| |
| from copy import copy |
| |
| from tests.common.impala_test_suite import ImpalaTestSuite |
| from tests.common.test_vector import TestDimension |
| |
| class TestDecimalQueries(ImpalaTestSuite): |
| BATCH_SIZES = [0, 1] |
| |
| @classmethod |
| def get_workload(cls): |
| return 'functional-query' |
| |
| @classmethod |
| def add_test_dimensions(cls): |
| super(TestDecimalQueries, cls).add_test_dimensions() |
| cls.TestMatrix.add_dimension( |
| TestDimension('batch_size', *TestDecimalQueries.BATCH_SIZES)) |
| |
| # Hive < 0.11 does not support decimal so we can't run these tests against the other |
| # file formats. |
| # TODO: Enable them on Hive >= 0.11. |
| cls.TestMatrix.add_constraint(lambda v:\ |
| (v.get_value('table_format').file_format == 'text' and |
| v.get_value('table_format').compression_codec == 'none') or |
| v.get_value('table_format').file_format == 'parquet') |
| |
| def test_queries(self, vector): |
| new_vector = copy(vector) |
| new_vector.get_value('exec_option')['batch_size'] = vector.get_value('batch_size') |
| self.run_test_case('QueryTest/decimal', new_vector) |
| |
| # TODO: when we have a good way to produce Avro decimal data (e.g. upgrade Hive), we can |
| # run Avro through the same tests as above instead of using avro_decimal_tbl. |
| class TestAvroDecimalQueries(ImpalaTestSuite): |
| @classmethod |
| def get_workload(cls): |
| return 'functional-query' |
| |
| @classmethod |
| def add_test_dimensions(cls): |
| super(TestAvroDecimalQueries, cls).add_test_dimensions() |
| cls.TestMatrix.add_constraint(lambda v: |
| (v.get_value('table_format').file_format == 'avro' and |
| v.get_value('table_format').compression_codec == 'snap')) |
| |
| def test_avro_queries(self, vector): |
| self.run_test_case('QueryTest/decimal_avro', vector) |