You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by cs...@apache.org on 2023/12/18 17:09:19 UTC

(impala) branch master updated: IMPALA-12650: Skip some queries in test_create_unicode_table on non-HFDS envs

This is an automated email from the ASF dual-hosted git repository.

csringhofer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git


The following commit(s) were added to refs/heads/master by this push:
     new a6a3bcbb7 IMPALA-12650: Skip some queries in test_create_unicode_table on non-HFDS envs
a6a3bcbb7 is described below

commit a6a3bcbb7c294bda1110d551ebb571904dc74811
Author: Csaba Ringhofer <cs...@cloudera.com>
AuthorDate: Mon Dec 18 17:10:08 2023 +0100

    IMPALA-12650: Skip some queries in test_create_unicode_table on non-HFDS envs
    
    Impala's non-HDFS test environment has no Hive running, making
    these tests fail. Added IS_HDFS_ONLY section for queries that
    need Hive.
    
    Change-Id: Ied4e5e295cf577cc45adc8d3b73d8682553d1b14
    Reviewed-on: http://gerrit.cloudera.org:8080/20813
    Reviewed-by: Zoltan Borok-Nagy <bo...@cloudera.com>
    Reviewed-by: Csaba Ringhofer <cs...@cloudera.com>
    Tested-by: Csaba Ringhofer <cs...@cloudera.com>
---
 .../functional-query/queries/QueryTest/unicode-column-name.test       | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/testdata/workloads/functional-query/queries/QueryTest/unicode-column-name.test b/testdata/workloads/functional-query/queries/QueryTest/unicode-column-name.test
index 66b5bda94..59bd14dda 100644
--- a/testdata/workloads/functional-query/queries/QueryTest/unicode-column-name.test
+++ b/testdata/workloads/functional-query/queries/QueryTest/unicode-column-name.test
@@ -149,9 +149,11 @@ describe $DATABASE.testtbl_orc;
 ---- TYPES
 STRING, STRING, STRING
 ====
+---- IS_HDFS_ONLY
 ---- HIVE_QUERY
 insert into table $DATABASE.testtbl_orc values(1, 'Alice');
 ====
+---- IS_HDFS_ONLY
 ---- HIVE_QUERY
 select * from $DATABASE.testtbl_orc;
 ---- RESULTS
@@ -192,9 +194,11 @@ describe $DATABASE.testtbl_avro;
 ---- TYPES
 STRING, STRING, STRING
 ====
+---- IS_HDFS_ONLY
 ---- HIVE_QUERY
 insert into table $DATABASE.testtbl_avro values(1, 'Alice');
 ====
+---- IS_HDFS_ONLY
 ---- HIVE_QUERY
 select * from $DATABASE.testtbl_avro;
 ---- RESULTS