This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 748ce67ad56 [test](case) fix the hdfs case uri error (#58556)
748ce67ad56 is described below
commit 748ce67ad56b2e940c0f12cc3b278b02f4c162ad
Author: zhangstar333 <[email protected]>
AuthorDate: Mon Dec 1 17:54:43 2025 +0800
[test](case) fix the hdfs case uri error (#58556)
### What problem does this PR solve?
the introduced pr: https://github.com/apache/doris/pull/57821
---
.../external_table_p0/paimon/test_paimon_catalog_varbinary.groovy | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/regression-test/suites/external_table_p0/paimon/test_paimon_catalog_varbinary.groovy
b/regression-test/suites/external_table_p0/paimon/test_paimon_catalog_varbinary.groovy
index eba056d3db1..91e69289cb3 100644
---
a/regression-test/suites/external_table_p0/paimon/test_paimon_catalog_varbinary.groovy
+++
b/regression-test/suites/external_table_p0/paimon/test_paimon_catalog_varbinary.groovy
@@ -75,8 +75,8 @@ suite("test_paimon_catalog_varbinary",
"p0,external,doris,external_docker,extern
// no mapping
qt_varbinary_7 """
select * from hdfs(
- "uri" =
"hdfs://127.0.0.1:8020/user/doris/paimon1/db1.db/binary_demo3/bucket-0/data-01367323-fe57-4cf2-8d63-658136eef42a-0.parquet",
- "fs.defaultFS" = "hdfs://127.0.0.1:8020",
+ "uri" =
"hdfs://${externalEnvIp}:${hdfs_port}/user/doris/paimon1/db1.db/binary_demo3/bucket-0/data-01367323-fe57-4cf2-8d63-658136eef42a-0.parquet",
+ "fs.defaultFS" = "hdfs://${externalEnvIp}:${hdfs_port}",
"hadoop.username" = "doris",
"format" = "parquet");
"""
@@ -84,8 +84,8 @@ suite("test_paimon_catalog_varbinary",
"p0,external,doris,external_docker,extern
// with mapping
qt_varbinary_8 """
select * from hdfs(
- "uri" =
"hdfs://127.0.0.1:8020/user/doris/paimon1/db1.db/binary_demo3/bucket-0/data-01367323-fe57-4cf2-8d63-658136eef42a-0.parquet",
- "fs.defaultFS" = "hdfs://127.0.0.1:8020",
+ "uri" =
"hdfs://${externalEnvIp}:${hdfs_port}/user/doris/paimon1/db1.db/binary_demo3/bucket-0/data-01367323-fe57-4cf2-8d63-658136eef42a-0.parquet",
+ "fs.defaultFS" = "hdfs://${externalEnvIp}:${hdfs_port}",
"hadoop.username" = "doris",
"enable_mapping_varbinary" = "true",
"format" = "parquet");
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]