This is an automated email from the ASF dual-hosted git repository.
zouxxyy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 05c9aa142c [test] Fix test HiveLocationTest.testExternTableLocation
(#7296)
05c9aa142c is described below
commit 05c9aa142caa297ab99b5a965135a69abcc678bd
Author: Zouxxyy <[email protected]>
AuthorDate: Fri Feb 20 19:03:56 2026 +0800
[test] Fix test HiveLocationTest.testExternTableLocation (#7296)
---
.../src/test/java/org/apache/paimon/hive/HiveLocationTest.java | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git
a/paimon-hive/paimon-hive-connector-common/src/test/java/org/apache/paimon/hive/HiveLocationTest.java
b/paimon-hive/paimon-hive-connector-common/src/test/java/org/apache/paimon/hive/HiveLocationTest.java
index 385bfc9ede..da75d05a28 100644
---
a/paimon-hive/paimon-hive-connector-common/src/test/java/org/apache/paimon/hive/HiveLocationTest.java
+++
b/paimon-hive/paimon-hive-connector-common/src/test/java/org/apache/paimon/hive/HiveLocationTest.java
@@ -202,7 +202,10 @@ public class HiveLocationTest {
}
Set<String> tableInHive = Sets.newHashSet(hiveShell.executeQuery("show
tables"));
- assertThat(tableInHive).isEqualTo(tableForTest);
+ assertThat(tableInHive)
+ .isEqualTo(
+ Sets.newHashSet(
+ "test_extern_table", "test_extern_table1",
"hive_inner_table1"));
}
@Test