Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
loneylee committed Jul 8, 2024
1 parent 7f3c55a commit 863aa08
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ abstract class GlutenClickHouseTPCDSAbstractSuite
} else {
(false, true)
}
case q77 if q77 == 77 && !isAqe =>
// Q77 CartesianProduct
(false, false)
case other => (true, false)
}
sqlNums.map((_, noFallBack._1, noFallBack._2))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1743,7 +1743,7 @@ class GlutenClickHouseTPCHSaltNullParquetSuite extends GlutenClickHouseTPCHAbstr
| on t0.a = t1.a
| ) t3
| )""".stripMargin
compareResultsAgainstVanillaSpark(sql1, true, { _ => }, false)
compareResultsAgainstVanillaSpark(sql1, true, { _ => })

val sql2 =
"""
Expand All @@ -1764,7 +1764,7 @@ class GlutenClickHouseTPCHSaltNullParquetSuite extends GlutenClickHouseTPCHAbstr
| on t0.a = t1.a
| ) t3
| )""".stripMargin
compareResultsAgainstVanillaSpark(sql2, true, { _ => }, false)
compareResultsAgainstVanillaSpark(sql2, true, { _ => })

val sql3 =
"""
Expand All @@ -1785,7 +1785,7 @@ class GlutenClickHouseTPCHSaltNullParquetSuite extends GlutenClickHouseTPCHAbstr
| on t0.a = t1.a
| ) t3
| )""".stripMargin
compareResultsAgainstVanillaSpark(sql3, true, { _ => }, false)
compareResultsAgainstVanillaSpark(sql3, true, { _ => })

val sql4 =
"""
Expand All @@ -1806,7 +1806,7 @@ class GlutenClickHouseTPCHSaltNullParquetSuite extends GlutenClickHouseTPCHAbstr
| on t0.a = t1.a
| ) t3
| )""".stripMargin
compareResultsAgainstVanillaSpark(sql4, true, { _ => }, false)
compareResultsAgainstVanillaSpark(sql4, true, { _ => })

val sql5 =
"""
Expand All @@ -1827,7 +1827,7 @@ class GlutenClickHouseTPCHSaltNullParquetSuite extends GlutenClickHouseTPCHAbstr
| on t0.a = t1.a
| ) t3
| )""".stripMargin
compareResultsAgainstVanillaSpark(sql5, true, { _ => }, false)
compareResultsAgainstVanillaSpark(sql5, true, { _ => })
}

test("GLUTEN-1874 not null in one stream") {
Expand Down

0 comments on commit 863aa08

Please sign in to comment.