zhztheplayer commented on code in PR #5333:
URL: https://github.com/apache/incubator-gluten/pull/5333#discussion_r1557051994
##########
backends-velox/src/test/scala/org/apache/gluten/execution/VeloxTPCHSuite.scala:
##########
@@ -314,6 +314,28 @@ class VeloxTPCHV2BhjSuite extends VeloxTPCHSuite {
}
}
+class VeloxTPCHV1RasSuite extends VeloxTPCHSuite {
+ override def subType(): String = "v1-ras"
+
+ override protected def sparkConf: SparkConf = {
+ super.sparkConf
+ .set("spark.sql.sources.useV1SourceList", "parquet")
+ .set("spark.sql.autoBroadcastJoinThreshold", "-1")
+ .set("spark.gluten.sql.ras.enabled", "true")
+ }
+}
+
+class VeloxTPCHV1BhjRasSuite extends VeloxTPCHSuite {
+ override def subType(): String = "v1-bhj-ras"
+
+ override protected def sparkConf: SparkConf = {
+ super.sparkConf
+ .set("spark.sql.sources.useV1SourceList", "parquet")
+ .set("spark.sql.autoBroadcastJoinThreshold", "30M")
+ .set("spark.gluten.sql.ras.enabled", "true")
+ }
+}
+
Review Comment:
These 2 suites are for RAS with golden checking.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]