Skip to content

Commit

Permalink
[VL] Fix useV1SourceList config for VeloxTPCHV1BhjSuite and VeloxTPCH…
Browse files Browse the repository at this point in the history
…V2Suite (#3930)
  • Loading branch information
liujiayi771 authored Dec 6, 2023
1 parent 81bb6c9 commit 06b9d47
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 06b9d47

Please sign in to comment.