Skip to content

Commit

Permalink
[GLUTEN-3879][CH] salt 1% of TPCH-1 data to NULL instead of 10% (#3880)
Browse files Browse the repository at this point in the history
  • Loading branch information
binmahone committed Nov 30, 2023
1 parent 4a7fd4b commit ed19a36
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class GlutenClickHouseTPCHParquetSuite extends GlutenClickHouseTPCHAbstractSuite
salted_df = Some((salted_df match {
case Some(x) => x
case None => df
}).withColumn(c.name, when(rand() < 0.1, 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 ed19a36

Please sign in to comment.