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 <[email protected]> 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 <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- 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
