Skip to content

Commit

Permalink
Address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dongjoon-hyun committed Feb 13, 2019
1 parent 3169bac commit 74d16de
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,9 @@ class DataSourceStrategySuite extends PlanTest with SharedSQLContext {

test("SPARK-26865 DataSourceV2Strategy should push normalized filters") {
val attrInt = 'cint.int
DataSourceStrategy.normalizeFilters(Seq(IsNotNull(attrInt.withName("CiNt"))), Seq(attrInt))
assertResult(Seq(IsNotNull(attrInt))) {
DataSourceStrategy.normalizeFilters(Seq(IsNotNull(attrInt.withName("CiNt"))), Seq(attrInt))
}
}

/**
Expand Down

0 comments on commit 74d16de

Please sign in to comment.