Skip to content

Commit

Permalink
repro bug
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhawvipul committed Jun 4, 2024
1 parent 9399c13 commit 146cbb0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ class CometExpressionSuite extends CometTestBase with AdaptiveSparkPlanHelper {
val table = "test0"
withTable(table) {
sql(s"create table $table(c9 int, c4 int) using parquet")
sql(s"insert into $table values(null, null), (66, null), (null, 70), (null, null)")
sql(s"insert into $table values(0, 0), (66, null), (null, 70), (null, null)")
checkSparkMaybeThrows(sql(s"SELECT chr(c9), chr(c4) FROM $table")) match {
case (None, None) => {}
case (_, _) => fail("Expected no exception")
Expand Down

0 comments on commit 146cbb0

Please sign in to comment.