Skip to content

Commit

Permalink
[HOTFIX] Fix compilation break
Browse files Browse the repository at this point in the history
  • Loading branch information
rxin committed Feb 22, 2016
1 parent 819b0ea commit 9bf6a92
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import org.apache.spark.sql.catalyst.analysis._
import org.apache.spark.sql.catalyst.expressions._
import org.apache.spark.sql.catalyst.plans.PlanTest
import org.apache.spark.sql.catalyst.plans.logical._
import org.apache.spark.sql.types.BooleanType
import org.apache.spark.unsafe.types.CalendarInterval

class CatalystQlSuite extends PlanTest {
Expand Down Expand Up @@ -213,7 +212,7 @@ class CatalystQlSuite extends PlanTest {

val expected = Project(
UnresolvedAlias(UnresolvedAttribute("u_1.id"), None) :: Nil,
Subquery("u_1",
SubqueryAlias("u_1",
Union(
Union(
Project(
Expand Down Expand Up @@ -247,7 +246,7 @@ class CatalystQlSuite extends PlanTest {

val expected2 = Project(
UnresolvedAlias(UnresolvedAttribute("u_1.id"), None) :: Nil,
Subquery("u_1",
SubqueryAlias("u_1",
Union(
Union(
Union(
Expand Down

0 comments on commit 9bf6a92

Please sign in to comment.