Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zzcclp committed Aug 31, 2024
1 parent c065b18 commit 7025f24
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,6 @@ case class CHBroadcastHashJoinExecTransformer(
if (shouldFallback) {
return ValidationResult.failed("ch join validate fail")
}
/* if (isNullAwareAntiJoin) {
return ValidationResult.failed("ch does not support NAAJ")
} */
super.doValidateInternal()
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class GlutenClickHouseTPCHSaltNullParquetSuite extends GlutenClickHouseTPCHAbstr
salted_df = Some((salted_df match {
case Some(x) => x
case None => df
}).withColumn(c.name, when(rand() < 0.5, null).otherwise(col(c.name))))
}).withColumn(c.name, when(rand() < 0.01, null).otherwise(col(c.name))))
}

val currentSaltedTablePath = saltedTablesPath + "/" + tableName
Expand Down

0 comments on commit 7025f24

Please sign in to comment.