You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by st...@apache.org on 2022/09/27 02:59:06 UTC

[impala] 02/03: IMPALA-11438, IMPALA-11594: update test for non-HDFS

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

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

commit 0d7232d2f2c2105144a673ee7a413f77f12a995c
Author: Michael Smith <mi...@cloudera.com>
AuthorDate: Fri Sep 23 09:32:45 2022 -0700

    IMPALA-11438, IMPALA-11594: update test for non-HDFS
    
    Updates the new create_table_like_parquet test to work with S3 and Ozone
    filesystem schemes in addition to HDFS.
    
    Change-Id: Ibd8d4c6b96c3ed607556793e6b822944a879a1f8
    Reviewed-on: http://gerrit.cloudera.org:8080/19037
    Reviewed-by: Impala Public Jenkins <im...@cloudera.com>
    Tested-by: Impala Public Jenkins <im...@cloudera.com>
---
 tests/query_test/test_iceberg.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/query_test/test_iceberg.py b/tests/query_test/test_iceberg.py
index 85f4d39e6..e0caccf63 100644
--- a/tests/query_test/test_iceberg.py
+++ b/tests/query_test/test_iceberg.py
@@ -804,7 +804,7 @@ class TestIcebergTable(IcebergTestSuite):
     result_rows = results.stdout.strip().split('\n')
     hdfs_file = None
     for row in result_rows:
-      if "hdfs://" in row:
+      if "://" in row:
         hdfs_file = row.split('|')[1].lstrip()
         break
     assert hdfs_file