This is an automated email from the ASF dual-hosted git repository.
yihua pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new 414d412bff6 [MINOR] Disable flaky testPartitionStatsWithMultiWriter
temporarily (#11983)
414d412bff6 is described below
commit 414d412bff6ff4b741fde003906e4533a425efc7
Author: Sagar Sumit <[email protected]>
AuthorDate: Sun Sep 22 23:32:38 2024 +0530
[MINOR] Disable flaky testPartitionStatsWithMultiWriter temporarily (#11983)
---
.../scala/org/apache/hudi/functional/TestPartitionStatsIndex.scala | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/hudi/functional/TestPartitionStatsIndex.scala
b/hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/hudi/functional/TestPartitionStatsIndex.scala
index 60776a86b85..1dddeb3ffdd 100644
---
a/hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/hudi/functional/TestPartitionStatsIndex.scala
+++
b/hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/hudi/functional/TestPartitionStatsIndex.scala
@@ -35,7 +35,7 @@ import org.apache.spark.sql.SaveMode
import org.apache.spark.sql.catalyst.expressions.{AttributeReference, EqualTo,
Expression, Literal}
import org.apache.spark.sql.types.StringType
import org.junit.jupiter.api.Assertions.{assertEquals, assertTrue}
-import org.junit.jupiter.api.{Tag, Test}
+import org.junit.jupiter.api.{Disabled, Tag, Test}
import org.junit.jupiter.params.ParameterizedTest
import org.junit.jupiter.params.provider.EnumSource
@@ -155,6 +155,7 @@ class TestPartitionStatsIndex extends
PartitionStatsIndexTestBase {
*/
@ParameterizedTest
@EnumSource(classOf[HoodieTableType])
+ @Disabled("HUDI-8234")
def testPartitionStatsWithMultiWriter(tableType: HoodieTableType): Unit = {
val hudiOpts = commonOpts ++ Map(
DataSourceWriteOptions.TABLE_TYPE.key -> tableType.name(),