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 862c19045 IMPALA-8794: Reenable piggy-back tests in
CatalogdMetaProviderTest
862c19045 is described below
commit 862c19045533e4858ef93792551c72d1c44995f8
Author: Csaba Ringhofer <[email protected]>
AuthorDate: Tue Feb 24 17:16:05 2026 +0100
IMPALA-8794: Reenable piggy-back tests in CatalogdMetaProviderTest
These were disabled on Hive>2 due to flakiness a long time ago.
Reenabling them - if there is still flakiness, it should be
investigated.
Testing:
- looped the tests many times
Change-Id: Ia2663fe505604035585b684f10fe089e71a6916b
Reviewed-on: http://gerrit.cloudera.org:8080/24028
Reviewed-by: Impala Public Jenkins <[email protected]>
Tested-by: Impala Public Jenkins <[email protected]>
---
.../apache/impala/catalog/local/CatalogdMetaProviderTest.java | 10 ----------
1 file changed, 10 deletions(-)
diff --git
a/fe/src/test/java/org/apache/impala/catalog/local/CatalogdMetaProviderTest.java
b/fe/src/test/java/org/apache/impala/catalog/local/CatalogdMetaProviderTest.java
index 1c36223da..e9b0447cd 100644
---
a/fe/src/test/java/org/apache/impala/catalog/local/CatalogdMetaProviderTest.java
+++
b/fe/src/test/java/org/apache/impala/catalog/local/CatalogdMetaProviderTest.java
@@ -438,21 +438,11 @@ public class CatalogdMetaProviderTest {
@Test
public void testPiggybackSuccess() throws Exception {
- // TODO: investigate the cause of flakiness (IMPALA-8794)
- Assume.assumeTrue(
- "Skipping this test because it is flaky with Hive3",
- TestUtils.getHiveMajorVersion() == 2);
-
doTestPiggyback(/*success=*/true);
}
@Test
public void testPiggybackFailure() throws Exception {
- // TODO: investigate the cause of flakiness (IMPALA-8794)
- Assume.assumeTrue(
- "Skipping this test because it is flaky with Hive3",
- TestUtils.getHiveMajorVersion() == 2);
-
doTestPiggyback(/*success=*/false);
}