Skip to content

Commit

Permalink
exclude some uts
Browse files Browse the repository at this point in the history
  • Loading branch information
exmy committed Jun 28, 2024
1 parent fbfb30a commit a47237b
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,9 @@ class ClickHouseTestSettings extends BackendTestSettings {
.exclude("string overlay function")
.exclude("binary overlay function")
.exclude("string parse_url function")
.exclude("string / binary length function")
.exclude("SPARK-36751: add octet length api for scala")
.exclude("SPARK-36751: add bit length api for scala")
enableSuite[GlutenSubquerySuite]
.exclude("SPARK-15370: COUNT bug in subquery in subquery in subquery")
.exclude("SPARK-26893: Allow pushdown of partition pruning subquery filters to file source")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,4 @@ import org.apache.spark.sql.catalyst.expressions.ExpressionEvalHelper
class GlutenStringFunctionsSuite
extends StringFunctionsSuite
with GlutenSQLTestsTrait
with ExpressionEvalHelper {

override def testNameBlackList: Seq[String] = super.testNameBlackList ++ Seq(
"string / binary length function"
)
}
with ExpressionEvalHelper {}
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,9 @@ class ClickHouseTestSettings extends BackendTestSettings {
.exclude("string overlay function")
.exclude("binary overlay function")
.exclude("string parse_url function")
.exclude("string / binary length function")
.exclude("SPARK-36751: add octet length api for scala")
.exclude("SPARK-36751: add bit length api for scala")
enableSuite[GlutenSubquerySuite]
.exclude("SPARK-15370: COUNT bug in subquery in subquery in subquery")
.exclude("SPARK-26893: Allow pushdown of partition pruning subquery filters to file source")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ class GlutenStringFunctionsSuite

import testImplicits._

override def testNameBlackList: Seq[String] = super.testNameBlackList ++ Seq(
"string / binary length function"
)

testGluten("string split function with no limit and regex pattern") {
val df1 = Seq(("aaAbbAcc4")).toDF("a").select(split($"a", "A"))
checkAnswer(df1, Row(Seq("aa", "bb", "cc4")))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,9 @@ class ClickHouseTestSettings extends BackendTestSettings {
.exclude("string overlay function")
.exclude("binary overlay function")
.exclude("string parse_url function")
.exclude("string / binary length function")
.exclude("SPARK-36751: add octet length api for scala")
.exclude("SPARK-36751: add bit length api for scala")
enableSuite[GlutenSubquerySuite]
.exclude("SPARK-15370: COUNT bug in subquery in subquery in subquery")
.exclude("SPARK-26893: Allow pushdown of partition pruning subquery filters to file source")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ class GlutenStringFunctionsSuite

import testImplicits._

override def testNameBlackList: Seq[String] = super.testNameBlackList ++ Seq(
"string / binary length function"
)

testGluten("string split function with no limit and regex pattern") {
val df1 = Seq(("aaAbbAcc4")).toDF("a").select(split($"a", "A"))
checkAnswer(df1, Row(Seq("aa", "bb", "cc4")))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,9 @@ class ClickHouseTestSettings extends BackendTestSettings {
.exclude("string overlay function")
.exclude("binary overlay function")
.exclude("string parse_url function")
.exclude("string / binary length function")
.exclude("SPARK-36751: add octet length api for scala")
.exclude("SPARK-36751: add bit length api for scala")
enableSuite[GlutenSubquerySuite]
.exclude("SPARK-15370: COUNT bug in subquery in subquery in subquery")
.exclude("SPARK-26893: Allow pushdown of partition pruning subquery filters to file source")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ class GlutenStringFunctionsSuite

import testImplicits._

override def testNameBlackList: Seq[String] = super.testNameBlackList ++ Seq(
"string / binary length function"
)

testGluten("string split function with no limit and regex pattern") {
val df1 = Seq(("aaAbbAcc4")).toDF("a").select(split($"a", "A"))
checkAnswer(df1, Row(Seq("aa", "bb", "cc4")))
Expand Down

0 comments on commit a47237b

Please sign in to comment.