Skip to content

Commit

Permalink
Fix VeloxTPCHV1BhjSuite and VeloxTPCHV2Suite useV1SourceList
Browse files Browse the repository at this point in the history
  • Loading branch information
liujiayi771 committed Dec 5, 2023
1 parent a462434 commit 4bc97bd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,15 +220,15 @@ class VeloxTPCHV1Suite extends VeloxTPCHSuite {
class VeloxTPCHV1BhjSuite extends VeloxTPCHSuite {
override protected def sparkConf: SparkConf = {
super.sparkConf
.set("spark.sql.sources.useV1SourceList", "")
.set("spark.sql.sources.useV1SourceList", "parquet")
.set("spark.sql.autoBroadcastJoinThreshold", "30M")
}
}

class VeloxTPCHV2Suite extends VeloxTPCHSuite {
override protected def sparkConf: SparkConf = {
super.sparkConf
.set("spark.sql.sources.useV1SourceList", "parquet")
.set("spark.sql.sources.useV1SourceList", "")
}
}

Expand Down

0 comments on commit 4bc97bd

Please sign in to comment.